Could you change maxZoom to 21 for "Google Terrain"? I often walk around hilly areas and the terrain map lets me choose most efficient paths.
I've tested this by switching to terrain and setting manually map._layersMaxZoom = 21. All seem to work fine. No errors in the console. The terrain does become flat, but it's better then switching layers (especially on mobile).
This is the line to change (just change 15 to 21):
baseLayers['Google Terrain'] = new L.Google('TERRAIN',{maxZoom:15});
Hi.
Could you change
maxZoom
to 21 for "Google Terrain"? I often walk around hilly areas and the terrain map lets me choose most efficient paths.I've tested this by switching to terrain and setting manually
map._layersMaxZoom = 21
. All seem to work fine. No errors in the console. The terrain does become flat, but it's better then switching layers (especially on mobile).This is the line to change (just change 15 to 21):
It's in
createDefaultBaseMapLayers
.Thanks in advance :-).