Hi there!
with the 10.2.5 SKD we found a solution to zoom in more than there are Level of Details defined for the TiledLayer.
// Set the maximum zoom level.
mapView.maxScale = mapView.scale(forResolution: 0.002)
mapView.minScale = 250000
self.currentBaseMap?.maxScale = mapView.scale(forResolution: 0.002)
self.currentBaseMap?.minScale = 250000
you can see the resulting screenshot attached. it looks ugly but does the job for our customers.
In the last 3 month we migrated to 100.4
even if i managed to zoom in indefinitely with that code:
mapView.map?.maxScale = 0
mapView.map?.minScale = 0
the basemap does not resample after reaching the maximum Level of Details.
how do i achive the same result as with the old SDK?
Thank you very much!
Cheers,
Mike