summaryrefslogtreecommitdiff
path: root/config/constants.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config/constants.cpp')
-rw-r--r--config/constants.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/config/constants.cpp b/config/constants.cpp
new file mode 100644
index 0000000000..ab0c160a8a
--- /dev/null
+++ b/config/constants.cpp
@@ -0,0 +1,31 @@
+#include <llmr/util/constants.hpp>
+
+const char *llmr::kSpriteURL = "http://mapbox-kkaefer.s3.amazonaws.com/static/outdoors-gl/sprite";
+const char *llmr::kVectorTileURL = "http://a.tiles.mapbox.com/v3/mapbox.mapbox-terrain-v1,mapbox.mapbox-streets-v5/%d/%d/%d.vector.pbf";
+const char *llmr::kGlyphURL = "http://mapbox.s3.amazonaws.com/gl-glyphs-256/%s/%d-%d.pbf";
+
+const float llmr::util::tileSize = 512.0f;
+
+#if defined(DEBUG)
+const bool llmr::debug::tileParseWarnings = false;
+const bool llmr::debug::styleParseWarnings = false;
+const bool llmr::debug::spriteWarnings = false;
+const bool llmr::debug::renderWarnings = false;
+const bool llmr::debug::renderTree = false;
+const bool llmr::debug::labelTextMissingWarning = true;
+const bool llmr::debug::missingFontStackWarning = true;
+const bool llmr::debug::missingFontFaceWarning = true;
+const bool llmr::debug::glyphWarning = true;
+const bool llmr::debug::shapingWarning = true;
+#else
+const bool llmr::debug::tileParseWarnings = false;
+const bool llmr::debug::styleParseWarnings = false;
+const bool llmr::debug::spriteWarnings = false;
+const bool llmr::debug::renderWarnings = false;
+const bool llmr::debug::renderTree = false;
+const bool llmr::debug::labelTextMissingWarning = false;
+const bool llmr::debug::missingFontStackWarning = false;
+const bool llmr::debug::missingFontFaceWarning = false;
+const bool llmr::debug::glyphWarning = false;
+const bool llmr::debug::shapingWarning = false;
+#endif