1 | #pragma once |
---|---|
2 | |
3 | #include <mbgl/style/conversion.hpp> |
4 | #include <mbgl/util/geo.hpp> |
5 | |
6 | namespace mbgl { |
7 | namespace style { |
8 | namespace conversion { |
9 | |
10 | template<> |
11 | struct Converter<LatLng> { |
12 | public: |
13 | optional<LatLng> operator() (const Convertible& value, Error& error) const; |
14 | }; |
15 | |
16 | } // namespace conversion |
17 | } // namespace style |
18 | } // namespace mbgl |
19 |