Home
last modified time | relevance | path

Searched refs:lon_ (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dgeo.cpp18 double lon_(const uint8_t z, const int64_t x) { in lon_() function
24 LatLng::LatLng(const CanonicalTileID& id) : lat(lat_(id.z, id.y)), lon(lon_(id.z, id.x)) { in LatLng()
29 lon(lon_(id.canonical.z, id.canonical.x) + id.wrap * util::DEGREES_MAX) { in LatLng()
33 : sw({ lat_(id.z, id.y + 1), lon_(id.z, id.x) }), in LatLngBounds()
34 ne({ lat_(id.z, id.y), lon_(id.z, id.x + 1) }) {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dgeo.hpp32 LatLng(double lat_ = 0, double lon_ = 0, WrapMode mode = Unwrapped) in LatLng() argument
33 : lat(lat_), lon(lon_) { in LatLng()