我正在使用Wordpress。我想更改google maps API上的默认缩放级别。我编辑了#34;缩放:5"财产,但没有任何反应。功能:
function initialize() {
var markers = [];
var map = new google.maps.Map(document.getElementById("map-canvas"),
{
zoom: 5,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng( -5.796453, -35.206706),
new google.maps.LatLng( -5.796453, -35.206706));
map.fitBounds(defaultBounds);
(...)
答案 0 :(得分:1)
map.fitbounds
重置视口并忽略您设置的缩放属性。我找到了这个模拟map.fitbounds
函数的小提琴,但放大的位置没有被忽略:https://jsfiddle.net/pdnsown1/2/