summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-06-26 18:49:06 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-06-29 10:54:17 -0700
commit42c06e70392941a9c07b842f019c4b060f716ff7 (patch)
tree18dfc09adcabc7239a738a416d7bac98b0ef50f9 /include/mbgl/annotation
parentf675d233142bbbfbe77c0145128c3eedfb18e824 (diff)
downloadqtlocation-mapboxgl-42c06e70392941a9c07b842f019c4b060f716ff7.tar.gz
Use array of structs rather than parallel arrays for annotations
Diffstat (limited to 'include/mbgl/annotation')
-rw-r--r--include/mbgl/annotation/point_annotation.hpp22
-rw-r--r--include/mbgl/annotation/shape_annotation.hpp24
2 files changed, 46 insertions, 0 deletions
diff --git a/include/mbgl/annotation/point_annotation.hpp b/include/mbgl/annotation/point_annotation.hpp
new file mode 100644
index 0000000000..17b6fe5369
--- /dev/null
+++ b/include/mbgl/annotation/point_annotation.hpp
@@ -0,0 +1,22 @@
+#ifndef MBGL_ANNOTATION_POINT_ANNOTATION
+#define MBGL_ANNOTATION_POINT_ANNOTATION
+
+#include <mbgl/util/geo.hpp>
+
+#include <string>
+
+namespace mbgl {
+
+class PointAnnotation {
+public:
+ inline PointAnnotation(const LatLng& position_, const std::string& icon_ = "")
+ : position(position_), icon(icon_) {
+ }
+
+ const LatLng position;
+ const std::string icon;
+};
+
+}
+
+#endif
diff --git a/include/mbgl/annotation/shape_annotation.hpp b/include/mbgl/annotation/shape_annotation.hpp
new file mode 100644
index 0000000000..a35b867266
--- /dev/null
+++ b/include/mbgl/annotation/shape_annotation.hpp
@@ -0,0 +1,24 @@
+#ifndef MBGL_ANNOTATION_SHAPE_ANNOTATION
+#define MBGL_ANNOTATION_SHAPE_ANNOTATION
+
+#include <mbgl/util/geo.hpp>
+#include <mbgl/map/map.hpp>
+#include <mbgl/style/style_properties.hpp>
+
+#include <string>
+
+namespace mbgl {
+
+class ShapeAnnotation {
+public:
+ inline ShapeAnnotation(const AnnotationSegments& segments_, const StyleProperties& styleProperties_)
+ : segments(segments_), styleProperties(styleProperties_) {
+ }
+
+ const AnnotationSegments segments;
+ const StyleProperties styleProperties;
+};
+
+}
+
+#endif