Google Map API v3 — 경계 및 중심 설정


303

최근에 Google Maps API V3으로 전환했습니다. 배열에서 마커를 플로팅하는 간단한 예제를 작성하고 있지만 마커를 기준으로 자동으로 중심을 맞추고 확대 / 축소하는 방법을 모릅니다.

Google 자체 문서를 포함하여 순 고도를 검색했지만 명확한 답변을 찾지 못했습니다. 나는 단순히 평균 좌표를 취할 수 있지만 그에 따라 줌을 어떻게 설정합니까?

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]
    });
  }
}

답변:


423

예, 새 경계 객체를 선언 할 수 있습니다.

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

그런 다음 각 마커에 대해 범위 객체를 확장하십시오.

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

API : google.maps.LatLngBounds


42
이 map을 추가 할 수도 있습니다. setCenter (bounds.getCenter ());
Raman Ghai

Raman의 답변과 의견은 모두 내가 필요한 것에 집중하는 데 도움이되었습니다.
JustJohn

@ 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 문서는이 기능이 어디로 갔는지에 대해 모호합니다.
Bill

12
3.0 문서는 놀랍게도 많은 것들이 어디로 갔는지에 대해 모호합니다. :(
Scott

5
죄송합니다. 잘못된 위치에 있습니다. 선택한 답변에 대한 의견입니다. 그러나 확장 기능이 for 루프 내부에 있어야 할 필요는 없습니까?
kidbrax

1
안녕하세요, 훌륭한 코드이지만 "이 줌 레벨에서 사용 가능한 이미지가 없습니다"를 피하기 위해이 코드를 향상시킬 수 있습니까? 이 코드는 확대 / 축소 수준을 처리하지 않기 때문에 모든 마커가 표시되는지 확인해야하지만 개인적으로 "이미지 없음 ..."메시지를 피하기 위해 더 낮은 확대 / 축소를 선호합니다. 제발 아이디어가 있습니까?
slah February

이러한 "bounds.extend (myLatLng); map.fitBounds (bounds);"입니까? 안드로이드에서도 사용할 수 있습니까?
lionfly

5

Google지도 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);
    }
}

결과적으로 u는 맵 창의 모든 점을 경계에 맞 춥니 다.

예제는 완벽하게 작동하며 여기에서 자유롭게 확인할 수 있습니다 www.zemelapis.lt


대신의 반환 false(가) 경우 bounds입니다 null, 당신은 할 수 있었다 maps[ mapId ].getBounds().
카이저

@localtime 실제로 웹 사이트가 작동하려면 Google Maps API 키가 필요합니다

1

답변은 마커의지도 경계를 조정하는 데 완벽하지만 다각형 및 원과 같은 모양의 Google지도 경계를 확장하려면 다음 코드를 사용할 수 있습니다.

서클

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 v2
dave1010 April

더 신중한 해결책을 제공해야합니다. 그리고 이것은 Google Maps v2에 대한 것이라고 생각합니다.
AllJs
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.