summaryrefslogtreecommitdiff
path: root/src/mbgl/source/source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/source/source.cpp')
-rw-r--r--src/mbgl/source/source.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/source/source.cpp b/src/mbgl/source/source.cpp
index 18de7bc093..78bffbb9b3 100644
--- a/src/mbgl/source/source.cpp
+++ b/src/mbgl/source/source.cpp
@@ -498,13 +498,13 @@ struct TileQuery {
double scale;
};
-std::unordered_map<std::string, std::vector<std::string>> Source::queryRenderedFeatures(
+std::unordered_map<std::string, std::vector<Feature>> Source::queryRenderedFeatures(
const std::vector<TileCoordinate>& queryGeometry,
const double zoom,
const double bearing,
const optional<std::vector<std::string>>& layerIDs) {
- std::unordered_map<std::string, std::vector<std::string>> result;
+ std::unordered_map<std::string, std::vector<Feature>> result;
double minX = std::numeric_limits<double>::infinity();
double minY = std::numeric_limits<double>::infinity();