谷歌地图在缩小时显示相同地图的许多版本

时间:2014-03-12 06:07:29

标签: javascript google-maps google-maps-api-3

我正在尝试缩小Google地图,这就是:enter image description here

如何阻止此类行为发生?

2 个答案:

答案 0 :(得分:0)

在地图选项中包含 minZoom 属性:

...
var mapOptions = {
    minZoom: 2
}

map = new google.maps.Map( document.getElementById( 'map-canvas' ), mapOptions );
...

这将限制用户可以缩小的数量,这将阻止地图重复。

更多信息:https://developers.google.com/maps/documentation/javascript/reference

答案 1 :(得分:0)

为地图设置maxZoom属性。

var mapOptions = {
                 zoom: 11,
                 center: tokyo,
                 mapTypeId: google.maps.MapTypeId.HYBRID
 }

 map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);

 google.maps.event.addListener(map, 'click', showMaxZoom);

请看这里:https://developers.google.com/maps/documentation/javascript/maxzoom