osrm-backend/include/util/vector_tile.hpp

13 lines
303 B
C++
Raw Permalink Normal View History

2016-04-14 10:33:23 -04:00
#ifndef OSRM_UTIL_VECTOR_TILE_HPP
#define OSRM_UTIL_VECTOR_TILE_HPP
#include <cstdint>
namespace osrm::util::vector_tile
2016-04-14 10:33:23 -04:00
{
// Vector tiles are 4096 virtual pixels on each side
const constexpr double EXTENT = 4096.0;
const constexpr double BUFFER = 128.0;
2022-12-20 12:00:11 -05:00
} // namespace osrm::util::vector_tile
2016-04-14 10:33:23 -04:00
#endif