google maps - Zoom beyond 21 zoom level with googlemaps api Android -


is possible zoom beyond 21 max zoom level provide googlemaps api on android ? have own pictures tileoverlay, zoom on 21 on own pictures on map.

thanks !

the maximum zoom level 21 , there no indicated way surpass this.

as proof, i'm going give example using javascript same concept holds true android well.

this map zoom level set 21: click here demo

var map = new google.maps.map(document.getelementbyid('map'), { zoom: 21, center: mylatlng });

this map zoom level set 23: click here demo

var map = new google.maps.map(document.getelementbyid('map'), {     zoom: 23,     center: mylatlng   }); 

you notice between 2 nothing has changed, there no way go beyond limit.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -