Hi
I'm using basemapgallery widget with OpenStreetMap as a default basemap for my application. I'm trying to allow user to set any scale for the map. I've been testing the map.setScale() method and whatever scale I pass as a parameter, the map zooms to nearest scale defined with osm lods.
Is it because osm is tiled? Is there a way to set whatever scale I need?
Yes, it is because OpenStreetMap is a tiled service.
Thank you for the answer.
So there is no way to set custom scale, unless I use other, not tiled basemap?
The JS API does not stretch tiles for in-between scales.
You can set the map to have more Levels of Details, but that still wont stretch existing tiles.
You can change the map to use non-tiled basemaps.
Thank you very much for clarifying that.