diff --git a/shared/src/map/layers/tiled/vector/Tiled2dMapVectorLayerParserHelper.cpp b/shared/src/map/layers/tiled/vector/Tiled2dMapVectorLayerParserHelper.cpp index dd2ece844..8eaf2afd5 100644 --- a/shared/src/map/layers/tiled/vector/Tiled2dMapVectorLayerParserHelper.cpp +++ b/shared/src/map/layers/tiled/vector/Tiled2dMapVectorLayerParserHelper.cpp @@ -183,10 +183,10 @@ Tiled2dMapVectorLayerParserResult Tiled2dMapVectorLayerParserHelper::parseStyleJ Options options; if (val["minzoom"].is_number_integer()) { - options.minZoom = val["minzoom"].get(); + options.minZoom = val["minzoom"].get(); } if (val["maxzoom"].is_number_integer()) { - options.maxZoom = val["maxzoom"].get(); + options.maxZoom = val["maxzoom"].get(); } if (val["data"].is_string()) { geojsonSources[key] = GeoJsonVTFactory::getGeoJsonVt(key, replaceUrlParams(val["data"].get(), sourceUrlParams), loaders, localDataProvider, options);