summaryrefslogtreecommitdiff
path: root/src/mbgl/util/constants.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-03-16 14:46:59 +0100
committerKonstantin Käfer <mail@kkaefer.com>2016-03-16 14:46:59 +0100
commitee651d783238ab9e3d69028f43795a62c91e58b9 (patch)
tree523f4a6ecea80d76d414efde706564ccfb168340 /src/mbgl/util/constants.cpp
parentdef2c804e522dde6bd32fa845d6343530036722c (diff)
downloadqtlocation-mapboxgl-ee651d783238ab9e3d69028f43795a62c91e58b9.tar.gz
[core] use constexpr constants
Diffstat (limited to 'src/mbgl/util/constants.cpp')
-rw-r--r--src/mbgl/util/constants.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/mbgl/util/constants.cpp b/src/mbgl/util/constants.cpp
index 7ff00800ae..d86adb4d69 100644
--- a/src/mbgl/util/constants.cpp
+++ b/src/mbgl/util/constants.cpp
@@ -4,39 +4,6 @@
namespace mbgl {
-namespace util {
-
-const float tileSize = 512.0f;
-
-/*
- * The maximum extent of a feature that can be safely stored in the buffer.
- * In practice, all features are converted to this extent before being added.
- *
- * Positions are stored as signed 16bit integers.
- * One bit is lost for signedness to support featuers extending past the left edge of the tile.
- * One bit is lost because the line vertex buffer packs 1 bit of other data into the int.
- * One bit is lost to support features extending past the extent on the right edge of the tile.
- * This leaves us with 2^13 = 8192
- */
-const int32_t EXTENT = 8192;
-
-const double DEG2RAD = M_PI / 180.0;
-const double RAD2DEG = 180.0 / M_PI;
-const double M2PI = 2 * M_PI;
-const double EARTH_RADIUS_M = 6378137;
-const double LATITUDE_MAX = 85.051128779806604;
-const double LONGITUDE_MAX = 180;
-const double DEGREES_MAX = 360;
-const double PITCH_MAX = M_PI / 3;
-const double MIN_ZOOM = 0.0;
-const double MAX_ZOOM = 25.5;
-
-const uint64_t DEFAULT_MAX_CACHE_SIZE = 50 * 1024 * 1024;
-
-const SystemDuration CLOCK_SKEW_RETRY_TIMEOUT = Seconds(30);
-
-} // namespace util
-
namespace debug {
#if defined(DEBUG)