summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2015-06-15 15:58:22 -0700
committerMinh Nguyễn <mxn@1ec5.org>2015-06-15 15:58:22 -0700
commit714b68f7b325c30d0646c8b237d65b013fb12f04 (patch)
tree7e8105e4a081879fba37e5fd6725ed0148ec9adf /include/mbgl/annotation
parenta08bcb6d0ee71d6709f6cc0c019b346155d49c0b (diff)
downloadqtlocation-mapboxgl-714b68f7b325c30d0646c8b237d65b013fb12f04.tar.gz
Revert "use array of structs rather than parallel arrays for annotations"
This reverts commit 2435c1ad2603432186ee61eb4c423244a088bc51 (#1710), which needs to be revisited in light of #1655, which is a much higher priority at the moment.
Diffstat (limited to 'include/mbgl/annotation')
-rw-r--r--include/mbgl/annotation/point_annotation.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/mbgl/annotation/point_annotation.hpp b/include/mbgl/annotation/point_annotation.hpp
deleted file mode 100644
index 17b6fe5369..0000000000
--- a/include/mbgl/annotation/point_annotation.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#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