diff options
author | Fabian Guerra Soto <fabian.guerra@mapbox.com> | 2017-10-18 15:18:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 15:18:54 -0400 |
commit | b7b8baef9d30d31a757dbbc0fbb8cb2c5cf3585e (patch) | |
tree | bd25ec804666cb22a7583a27e63e95c5bd65eef3 /include/mbgl/renderer | |
parent | 24fc48982a635578db3f2262b9f56a27c53688cb (diff) | |
download | qtlocation-mapboxgl-b7b8baef9d30d31a757dbbc0fbb8cb2c5cf3585e.tar.gz |
[ios, macos] Add selection support to MGLMultiPoint annotations. (#9984)
* [ios, macos] Add selection support to MGLMultiPoint annotations.
* [ios, macos] Update changelogs.
Diffstat (limited to 'include/mbgl/renderer')
-rw-r--r-- | include/mbgl/renderer/renderer.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/renderer/renderer.hpp b/include/mbgl/renderer/renderer.hpp index be8abb2c29..23d2451a2e 100644 --- a/include/mbgl/renderer/renderer.hpp +++ b/include/mbgl/renderer/renderer.hpp @@ -40,6 +40,8 @@ public: std::vector<Feature> queryRenderedFeatures(const ScreenBox& box, const RenderedQueryOptions& options = {}) const; std::vector<Feature> querySourceFeatures(const std::string& sourceID, const SourceQueryOptions& options = {}) const; AnnotationIDs queryPointAnnotations(const ScreenBox& box) const; + AnnotationIDs queryShapeAnnotations(const ScreenBox& box) const; + AnnotationIDs getAnnotationIDs(const std::vector<Feature>&) const; // Debug void dumpDebugLogs(); |