summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation/shape_annotation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/annotation/shape_annotation.hpp')
-rw-r--r--include/mbgl/annotation/shape_annotation.hpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/include/mbgl/annotation/shape_annotation.hpp b/include/mbgl/annotation/shape_annotation.hpp
deleted file mode 100644
index 6e3fe95dd4..0000000000
--- a/include/mbgl/annotation/shape_annotation.hpp
+++ /dev/null
@@ -1,54 +0,0 @@
-#pragma once
-
-#include <mbgl/annotation/annotation.hpp>
-#include <mbgl/style/types.hpp>
-
-#include <mbgl/util/geo.hpp>
-#include <mbgl/util/variant.hpp>
-
-namespace mbgl {
-
-using AnnotationSegment = std::vector<LatLng>;
-using AnnotationSegments = std::vector<AnnotationSegment>;
-
-struct FillAnnotationProperties {
- float opacity = 1;
- Color color = {{ 0, 0, 0, 1 }};
- Color outlineColor = {{ 0, 0, 0, -1 }};
-};
-
-struct LineAnnotationProperties {
- float opacity = 1;
- float width = 1;
- Color color = {{ 0, 0, 0, 1 }};
-};
-
-class ShapeAnnotation {
-public:
- using Properties = variant<
- FillAnnotationProperties, // creates a fill annotation
- LineAnnotationProperties, // creates a line annotation
- std::string>; // creates an annotation whose type and properties are sourced from a style layer
-
- ShapeAnnotation(const AnnotationSegments& segments_, const Properties& properties_)
- : segments(wrapCoordinates(segments_)), properties(properties_) {}
-
- const AnnotationSegments segments;
- const Properties properties;
-
-private:
- AnnotationSegments wrapCoordinates(const AnnotationSegments& segments_) {
- AnnotationSegments wrappedSegments;
- // Wrap all segments coordinates.
- for (const auto& segment_ : segments_) {
- AnnotationSegment wrappedSegment;
- for (const auto& latLng_ : segment_) {
- wrappedSegment.push_back(latLng_.wrapped());
- }
- wrappedSegments.push_back(wrappedSegment);
- }
- return wrappedSegments;
- }
-};
-
-} // namespace mbgl