common_msgs/nav_msgs/include/nav_msgs/MapMetaData.h
2025-10-30 11:30:16 +07:00

23 lines
312 B
C++

#ifndef MAP_META_DATA_H
#define MAP_META_DATA_H
#include <cstdint>
#include <string>
#include <vector>
#include "geometry_msgs/Pose.h"
namespace nav_msgs
{
struct MapMetaData
{
double map_load_time;
float resolution;
uint32_t width;
uint32_t height;
geometry_msgs::Pose origin;
};
}
#endif //MAP_META_DATA_H