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

#include <mbgl/style/conversion.hpp>
#include <mbgl/util/geo.hpp>
#include <mbgl/util/optional.hpp>

namespace mbgl {
namespace style {
namespace conversion {
            
template<>
struct Converter<LatLng> {
public:
    optional<LatLng> operator() (const Convertible& value, Error& error) const;
};

} // namespace conversion
} // namespace style
} // namespace mbgl