Google Map API v3-设置范围和中心


303

我最近切换到了Google Maps API V3。我正在研究一个从数组绘制标记的简单示例,但是我不知道如何相对于标记自动居中和缩放。

我已经搜索了包括谷歌自己的文档在内的最高和最低值,但没有找到明确的答案。我知道我可以简单地取坐标的平均值,但是如何设置缩放比例呢?

function initialize() {
  var myOptions = {
    zoom: 10,
    center: new google.maps.LatLng(-33.9, 151.2),


    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);

  setMarkers(map, beaches);
}


var beaches = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.423036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 121.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.450198, 151.259302, 1]
];

function setMarkers(map, locations) {

  var image = new google.maps.MarkerImage('images/beachflag.png',
      new google.maps.Size(20, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));
    var shadow = new google.maps.MarkerImage('images/beachflag_shadow.png',

      new google.maps.Size(37, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));


      var lat = map.getCenter().lat(); 
      var lng = map.getCenter().lng();      


  var shape = {
      coord: [1, 1, 1, 20, 18, 20, 18 , 1],
      type: 'poly'
  };
  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        shadow: shadow,
        icon: image,
        shape: shape,
        title: beach[0],
        zIndex: beach[3]
    });
  }
}

Answers:


423

是的,您可以声明新的bounds对象。

 var bounds = new google.maps.LatLngBounds();

然后对于每个标记,扩展您的bounds对象:

bounds.extend(myLatLng);
map.fitBounds(bounds);

API:google.maps.LatLngBounds


42
您也可以添加此map.setCenter(bounds.getCenter());
拉曼·盖

拉曼的回答和评论都帮助我降低了对我所需要的关注的程度。
JustJohn '16

@ Sam152:您可能会对500英镑的相关问题赏金感兴趣。
Dan Dascalescu

185

一切都排序了-请查看最后几行代码-(bounds.extend(myLatLng); map.fitBounds(bounds);

function initialize() {
  var myOptions = {
    zoom: 10,
    center: new google.maps.LatLng(0, 0),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(
    document.getElementById("map_canvas"),
    myOptions);
  setMarkers(map, beaches);
}

var beaches = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 161.259052, 5],
  ['Cronulla Beach', -36.028249, 153.157507, 3],
  ['Manly Beach', -31.80010128657071, 151.38747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.159302, 1]
];

function setMarkers(map, locations) {
  var image = new google.maps.MarkerImage('images/beachflag.png',
    new google.maps.Size(20, 32),
    new google.maps.Point(0,0),
    new google.maps.Point(0, 32));
  var shadow = new google.maps.MarkerImage('images/beachflag_shadow.png',
    new google.maps.Size(37, 32),
    new google.maps.Point(0,0),
    new google.maps.Point(0, 32));
  var shape = {
    coord: [1, 1, 1, 20, 18, 20, 18 , 1],
    type: 'poly'
  };
  var bounds = new google.maps.LatLngBounds();
  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
      position: myLatLng,
      map: map,
      shadow: shadow,
      icon: image,
      shape: shape,
      title: beach[0],
      zIndex: beach[3]
    });
    bounds.extend(myLatLng);
  }
  map.fitBounds(bounds);
}

7
谢谢!3.0文档令人惊讶地模糊了此功能的去向。
条例草案

12
3.0文档令人惊讶地模糊了很多事情。:(
斯科特

5
抱歉,这是在错误的位置。这是对所选答案的评论。但是extend函数是否不需要在for循环中?
kidbrax 2011年

1
您好,很棒的代码,但是可以对此代码进行增强,以避免“在此缩放级别没有可用的图像”。因为此代码不会处理缩放级别,所以请确保它确实显示所有标记,但我个人比较希望看到较低的缩放比例,以避免出现“无图像...”消息。有什么想法吗?
slah 2011年

这些是“ bounds.extend(myLatLng); map.fitBounds(bounds);”吗?适用于Android吗?
lionfly 2011年

5

我对Google Maps api v3的建议是(不要认为它可以更有效地完成):

gmap : {
    fitBounds: function(bounds, mapId)
    {
        //incoming: bounds - bounds object/array; mapid - map id if it was initialized in global variable before "var maps = [];"
        if (bounds==null) return false;
        maps[mapId].fitBounds(bounds);
    }
}

结果,您将使地图窗口中的所有点都适合边界。

示例可以完美运行,您可以在此处自由检查它:www.zemelapis.lt


而不是返回false,如果boundsnull,你可以maps[ mapId ].getBounds()
kaiser

@localtime实际上,您的网站需要使用Google Maps API密钥才能工作

1

答案非常适合调整标记的地图边界,但是如果您想扩展多边形和圆形等形状的Google Maps边界,则可以使用以下代码:

对于圈子

bounds.union(circle.getBounds());

对于多边形

polygon.getPaths().forEach(function(path, index)
{
    var points = path.getArray();
    for(var p in points) bounds.extend(points[p]);
});

对于矩形

bounds.union(overlay.getBounds());

对于折线

var path = polyline.getPath();

var slat, blat = path.getAt(0).lat();
var slng, blng = path.getAt(0).lng();

for(var i = 1; i < path.getLength(); i++)
{
    var e = path.getAt(i);
    slat = ((slat < e.lat()) ? slat : e.lat());
    blat = ((blat > e.lat()) ? blat : e.lat());
    slng = ((slng < e.lng()) ? slng : e.lng());
    blng = ((blng > e.lng()) ? blng : e.lng());
}

bounds.extend(new google.maps.LatLng(slat, slng));
bounds.extend(new google.maps.LatLng(blat, blng));

-1

setCenter()方法仍然适用于不存在fitBounds()的最新版Maps API for Flash。


-15

使用以下一项,

map.setCenter(bounds.getCenter(),map.getBoundsZoomLevel(bounds));


12
这是针对Google Maps API第2版
dave1010,2010年

您需要提供更周到的解决方案。我相信这是针对Google Maps v2的。
AllJs
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.