缩放级别属性不适用于Google Map(Wordpress函数)

时间:2016-03-18 19:38:06

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

我正在使用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);


  (...)

1 个答案:

答案 0 :(得分:1)

map.fitbounds重置视口并忽略您设置的缩放属性。我找到了这个模拟map.fitbounds函数的小提琴,但放大的位置没有被忽略:https://jsfiddle.net/pdnsown1/2/