summaryrefslogtreecommitdiff
path: root/src/map/vector_tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/vector_tile.cpp')
-rw-r--r--src/map/vector_tile.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/vector_tile.cpp b/src/map/vector_tile.cpp
index 393a72c14b..8644c3e044 100644
--- a/src/map/vector_tile.cpp
+++ b/src/map/vector_tile.cpp
@@ -1,14 +1,14 @@
-#include <llmr/map/vector_tile.hpp>
-#include <llmr/style/filter_expression_private.hpp>
-#include <llmr/style/filter_comparison_private.hpp>
+#include <mbgl/map/vector_tile.hpp>
+#include <mbgl/style/filter_expression_private.hpp>
+#include <mbgl/style/filter_comparison_private.hpp>
#include <algorithm>
#include <iostream>
-using namespace llmr;
+using namespace mbgl;
-std::ostream& llmr::operator<<(std::ostream& os, const FeatureType& type) {
+std::ostream& mbgl::operator<<(std::ostream& os, const FeatureType& type) {
switch (type) {
case FeatureType::Unknown: return os << "Unknown";
case FeatureType::Point: return os << "Point";
@@ -54,7 +54,7 @@ VectorTileFeature::VectorTileFeature(pbf feature, const VectorTileLayer& layer)
}
-std::ostream& llmr::operator<<(std::ostream& os, const VectorTileFeature& feature) {
+std::ostream& mbgl::operator<<(std::ostream& os, const VectorTileFeature& feature) {
os << "Feature(" << feature.id << "): " << feature.type << std::endl;
for (const auto& prop : feature.properties) {
os << " - " << prop.first << ": " << prop.second << std::endl;