summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFabian Guerra Soto <fabian.guerra@mapbox.com>2017-10-18 15:18:54 -0400
committerGitHub <noreply@github.com>2017-10-18 15:18:54 -0400
commitb7b8baef9d30d31a757dbbc0fbb8cb2c5cf3585e (patch)
treebd25ec804666cb22a7583a27e63e95c5bd65eef3 /include
parent24fc48982a635578db3f2262b9f56a27c53688cb (diff)
downloadqtlocation-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')
-rw-r--r--include/mbgl/renderer/renderer.hpp2
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();