Google Map API v3 - 경계 및 중심 설정
최근에 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]
});
}
}
예, 새 경계 개체를 선언할 수 있습니다.
var bounds = new google.maps.LatLngBounds();
그런 다음 각 표식에 대해 경계 개체를 확장합니다.
bounds.extend(myLatLng);
map.fitBounds(bounds);
API: google.maps.LatLangbounds
모든 것을 정리했습니다.코드에 대해서는 마지막 몇 줄을 참조해 주세요.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);
}
정답은 마커에 대한 지도 경계를 조정하는 데 적합하지만 다각형이나 원과 같은 도형에 대해 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));
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에서 확인할 수 있습니다.
setCenter() 메서드는 fitBounds()가 존재하지 않는 플래시용 Maps API의 최신 버전에 적용할 수 있습니다.
1개 아래를 사용하세요.
map.setCenter(bounds.getCenter(), map.getBoundsZoom레벨(바운드);
언급URL : https://stackoverflow.com/questions/1556921/google-map-api-v3-set-bounds-and-center
'source' 카테고리의 다른 글
어레이의 첫 번째 아이템 삭제(스택에서 팝핑 등) (0) | 2022.10.29 |
---|---|
SQL - 업데이트가 있는 경우 그렇지 않은 경우 삽입 (0) | 2022.10.29 |
MariaDB 10.2 Xtrabackup./usr//bin/wsrep_sst_xtrabackup-v2 WSREP_SST_OPT_PORT: 언바인드 변수 (0) | 2022.10.29 |
MySQL "Group By" 및 "Order By" (0) | 2022.10.29 |
원칙 2:참조 표에 추가 열을 사용하여 다대다를 처리하는 가장 좋은 방법 (0) | 2022.10.29 |