Hi ESRI community,
I have a simple problem I believe, in a basic map setup, I can add a layer like this
map = new Map({basemap: "topo-vector" });
new MapView({ map: map,....});
map.add(new ImageryTileLayer({url:".../Terrain3D/ImageServer"}));
but when I zoom too much in the layers disapears,
my question:
how can I force the display of last available Level Of detail ? to be clear, I don't want to limit the mapzoom to the max layer's LOD, I want to zoom as much as possible even if pixelated
in advance for your help a big thx !