blob: 5d8fe89e36e63e0d735b70deb4d1ef06673910bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#pragma once
#include <mbgl/util/optional.hpp>
#include <mbgl/util/string.hpp>
#include <mapbox/value.hpp>
namespace mbgl {
using Value = mapbox::base::Value;
using NullValue = mapbox::base::NullValue;
using PropertyMap = mapbox::base::ValueObject;
using FeatureIdentifier = mapbox::feature::identifier;
using GeoJSONFeature = mapbox::feature::feature<double>;
using FeatureState = mapbox::base::ValueObject;
using FeatureStates = std::unordered_map<std::string, FeatureState>; // <featureID, FeatureState>
using LayerFeatureStates = std::unordered_map<std::string, FeatureStates>; // <sourceLayer, FeatureStates>
class Feature : public GeoJSONFeature {
public:
std::string source;
std::string sourceLayer;
PropertyMap state;
using GeometryType = mapbox::geometry::geometry<double>;
Feature() = default;
Feature(const GeoJSONFeature& f) : GeoJSONFeature(f) {}
Feature(const GeometryType& geom_) : GeoJSONFeature(geom_) {}
Feature(GeometryType&& geom_) : GeoJSONFeature(std::move(geom_)) {}
};
template <class T>
optional<T> numericValue(const Value& value) {
return value.match(
[] (uint64_t t) {
return optional<T>(t);
},
[] (int64_t t) {
return optional<T>(t);
},
[] (double t) {
return optional<T>(t);
},
[] (auto) {
return optional<T>();
});
}
inline optional<std::string> featureIDtoString(const FeatureIdentifier& id) {
if (id.is<NullValue>()) {
return nullopt;
}
return id.match(
[](const std::string& value_) { return value_; }, [](uint64_t value_) { return util::toString(value_); },
[](int64_t value_) { return util::toString(value_); }, [](double value_) { return util::toString(value_); },
[](const auto&) -> optional<std::string> { return nullopt; });
}
} // namespace mbgl
|