diff options
author | Gabriel Miklós <gabriel.miklos@commsignia.com> | 2016-02-09 16:09:01 +0100 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-02-12 16:47:24 -0800 |
commit | d742c2d3eb3b8f669f0df9c6e5f6596eaf8fb616 (patch) | |
tree | 9e03a237ed093dcaae88be1d266180495211ee84 /include | |
parent | 9841f940740d56dca347fe9a8383107c41bcee5e (diff) | |
download | qtlocation-mapboxgl-d742c2d3eb3b8f669f0df9c6e5f6596eaf8fb616.tar.gz |
[core] Add support for updating point annotations
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/map/map.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index 3a85030169..8c27b1756a 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -161,6 +161,8 @@ public: AnnotationID addShapeAnnotation(const ShapeAnnotation&); AnnotationIDs addShapeAnnotations(const std::vector<ShapeAnnotation>&); + void updatePointAnnotation(AnnotationID, const PointAnnotation&); + void removeAnnotation(AnnotationID); void removeAnnotations(const AnnotationIDs&); |