summaryrefslogtreecommitdiff
path: root/include/mbgl/map/query.hpp
blob: e864dbaa670d8818241a4d99c637fa2e22420924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <mbgl/util/optional.hpp>
#include <mbgl/style/filter.hpp>

namespace mbgl {

/**
 * Options for Map queries.
 */
class QueryOptions {
public:
    /** layerIDs to include in the query */
    optional<std::vector<std::string>> layerIDs;
    
    optional<style::Filter> filter;
};

}