我需要将maxZoom
级别设置google.maps.MapTypeId.HYBRID
为 21。实际上,他设置为 14(使用萤火虫控制台检查)。
设置google.maps
对象'maxZoom'的属性在这种情况下不起作用,我已经尝试修改google.maps.mapTypes
对象,但没有成功。
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);
和
google.maps.event.addListener(map, 'tilesloaded', function(event){
var mapTypeRegistry = map.mapTypes;
var currentMapTypeId = map.getMapTypeId();
var mapType = mapTypeRegistry.get(currentMapTypeId);
mapType.maxZoom = 21;
});
那么,有没有办法增加 mapType HYBRID 的缩放级别?
谢谢。