osrm-backend/include/util/vector_tile.hpp
2022-12-20 18:00:11 +01:00

13 lines
303 B
C++

#ifndef OSRM_UTIL_VECTOR_TILE_HPP
#define OSRM_UTIL_VECTOR_TILE_HPP
#include <cstdint>
namespace osrm::util::vector_tile
{
// Vector tiles are 4096 virtual pixels on each side
const constexpr double EXTENT = 4096.0;
const constexpr double BUFFER = 128.0;
} // namespace osrm::util::vector_tile
#endif