admin管理员组文章数量:1339794
I need to set the maxZoom
level of the google.maps.MapTypeId.HYBRID
to 21. Actually, he's set to 14 (inspected with the firebug console).
Set the property of the google.maps
object 'maxZoom' doesn't work in this case, and I already try to modify the google.maps.mapTypes
object, but without success.
var options = {
center: new google.maps.LatLng(lat_centre,lng_centre),
zoom: 14,
maxZoom: 21,
mapTypeId: google.maps.MapTypeId.TERRAIN,
panControl: true,
zoomControl: true,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
disableDoubleClickZoom: true,
styles: [
{featureType: "poi", stylers: [{visibility: "off"}]}
]
};
map = new google.maps.Map(document.getElementById("map_container"),options);
AND
google.maps.event.addListener(map, 'tilesloaded', function(event){
var mapTypeRegistry = map.mapTypes;
var currentMapTypeId = map.getMapTypeId();
var mapType = mapTypeRegistry.get(currentMapTypeId);
mapType.maxZoom = 21;
});
So, is there a way to increase the zoom level of the mapType HYBRID ?
Thanks.
I need to set the maxZoom
level of the google.maps.MapTypeId.HYBRID
to 21. Actually, he's set to 14 (inspected with the firebug console).
Set the property of the google.maps
object 'maxZoom' doesn't work in this case, and I already try to modify the google.maps.mapTypes
object, but without success.
var options = {
center: new google.maps.LatLng(lat_centre,lng_centre),
zoom: 14,
maxZoom: 21,
mapTypeId: google.maps.MapTypeId.TERRAIN,
panControl: true,
zoomControl: true,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
disableDoubleClickZoom: true,
styles: [
{featureType: "poi", stylers: [{visibility: "off"}]}
]
};
map = new google.maps.Map(document.getElementById("map_container"),options);
AND
google.maps.event.addListener(map, 'tilesloaded', function(event){
var mapTypeRegistry = map.mapTypes;
var currentMapTypeId = map.getMapTypeId();
var mapType = mapTypeRegistry.get(currentMapTypeId);
mapType.maxZoom = 21;
});
So, is there a way to increase the zoom level of the mapType HYBRID ?
Thanks.
Share Improve this question edited May 9, 2012 at 14:22 jbrtrnd asked May 9, 2012 at 14:09 jbrtrndjbrtrnd 3,8435 gold badges26 silver badges41 bronze badges 1- could you show us the code when you're trying to set the Max zoom – Jorge Commented May 9, 2012 at 14:11
1 Answer
Reset to default 11If you changed mapType
object's property ( maxZoom
, minZoom
, etc... ), the changed effect will take a place ONLY AFTER the map's type will be changed to that mapType
. For example , if current mapType
is TERRAIN
, and you changed TERRAIN
's maxZoom
, maxZoom
will work only after changing mapType
to another type (e.g. ROADMAP
,HYBRID
,etc..) and back to TERRAIN
.
Instead of setting mapType
's maxZoom
option,use core map's maxZoom
option. Add listener for "maptypeid_changed"
event, and when event occurs, change maxZoom
option of map
:
google.maps.event.addListener(map, 'maptypeid_changed', function(event){
if( map.getMapTypeId() === google.maps.MapTypeId.TERRAIN ){
map.setOptions({maxZoom:/*For example*/5});
}else
if( map.getMapTypeId() === google.maps.MapTypeId.ROADMAP ){
map.setOptions({maxZoom:/*For example*/8});
}//Etc...
else{
map.setOptions({maxZoom:/*For example*/21});
}
});
本文标签: javascriptModify the max zoom level of a Google Map TypeStack Overflow
版权声明:本文标题:javascript - Modify the max zoom level of a Google Map Type - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743597198a2508048.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论