Home
last modified time | relevance | path

Searched refs:maxzoomValue (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dgeojson_options.cpp20 const auto maxzoomValue = objectMember(value, "maxzoom"); in operator ()() local
21 if (maxzoomValue) { in operator ()()
22 if (toNumber(*maxzoomValue)) { in operator ()()
23 options.maxzoom = static_cast<uint8_t>(*toNumber(*maxzoomValue)); in operator ()()
H A Dtileset.cpp60 auto maxzoomValue = objectMember(value, "maxzoom"); in operator ()() local
61 if (maxzoomValue) { in operator ()()
62 optional<float> maxzoom = toNumber(*maxzoomValue); in operator ()()
H A Dlayer.cpp196 auto maxzoomValue = objectMember(value, "maxzoom"); in operator ()() local
197 if (maxzoomValue) { in operator ()()
198 optional<float> maxzoom = toNumber(*maxzoomValue); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/conversion/
H A Dcustom_geometry_source_options.hpp27 const auto maxzoomValue = objectMember(value, "maxzoom"); in operator ()() local
28 if (maxzoomValue) { in operator ()()
29 if (toNumber(*maxzoomValue)) { in operator ()()
30 options.zoomRange.max = static_cast<uint8_t>(*toNumber(*maxzoomValue)); in operator ()()