이것은 단지 Google Maps API 사용법을 알려주는 것이며, 어떤 이유로 Google은 모든 사람과 멀어졌습니다.
지리적 위치
<스타일>
HTML, 본문, #map-캔버스 {
여백: 0;
패딩: 0;
높이: 100%;
}
스타일>
https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false">>
var 지도;
var 폴리;
함수 초기화() {
var myLatlng = new google.maps.LatLng(31.1937077, 121.4158436);
var 위치 = [
['test1, 정확도: 150m', 31.1937077, 121.4158436, 100],
['test2, 정확도: 150m', 31.2937077, 121.4158436, 100],
['test3, 정확도: 150m', 31.0937077, 121.2158436, 100],
['test4, 정확도: 150m', 31.3937077, 120.4158436, 100],
['test5, 정확도: 150m', 31.1637077, 120.4858436, 100],
['test6, 정확도: 150m', 31.1037077, 121.5158436, 100]
];
var mapOptions = {
확대/축소: 13,
센터: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
지도 = 새로운 google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
// 线条设置
var 폴리옵션 = {
스트로크색상: '#00ff00', // 颜color
스트로크Opacity: 1.0, // 투명도
스트로크 무게: 4 // 크기
}
폴리 = 새로운 google.maps.Polyline(polyOptions);
폴리.setMap(맵); // 装载
/* 循环标流所有坐标 */
/*for(var i=0; i
var loc = [];
loc.push(위치[i][1]);
loc.push(위치[i][2]);
var 경로 = 폴리.getPath(); //获取线条的坐标
path.push(new google.maps.LatLng(loc[0], loc[1])); //为线条添加标记坐标
//生成标记图标
마커 = 새로운 google.maps.Marker({
위치: 새로운 google.maps.LatLng(loc[0], loc[1]),
지도: 지도
// 아이콘: "
https://maps.gstatic.com/mapfiles/markers/marker_green.png"
});
}*/
var 마커, i, 원;
var iwarray = [];
var infoWindow;
var latlngbounds = 새로운 google.maps.LatLngBounds();
var iconYellow = new google.maps.MarkerImage("
http://maps.google.com/mapfiles/ms/icons/yellow-dot.png");
for (i = 0; i < 위치.길이; i ) {
var loc = [];
loc.push(위치[i][1]);
loc.push(위치[i][2]);
var 경로 = 폴리.getPath(); //获取线条的坐标
path.push(new google.maps.LatLng(loc[0], loc[1]));
var latlng = new google.maps.LatLng(locations[i][1], 위치[i][2]);
latlngbounds.extend(latlng);
if (locations[i][0].indexOf("[캐시됨") == 0 || (locations[i][0].indexOf("[Multiple") == 0 && 위치[i][0]. indexOf("[캐시됨") >= 0 )) {
marker = 새로운 google.maps.Marker({
position: latlng,
map: map,
icon: iconYellow
});
var iw = '
' + locations[i][0] + '';
} else {
marker = new google.maps.Marker({
position: latlng,
map: map
});
var iw = '
' + locations[i][0] + '';
}
iwarray[i] = iw;
google.maps.event.addListener(marker, 'mouseover', (function(marker,i){
return function(){
infoWindow = new google.maps.InfoWindow({
content: iwarray[i],
maxWidth: 200,
pixelOffset: new google.maps.Size(0, 0)
});
infoWindow.open(map, marker);
}
})(marker,i));
google.maps.event.addListener(marker, 'mouseout', function() {
infoWindow.close();
});
circle = new google.maps.Circle({
map: map,
radius: locations[i][3],
fillColor: '#0000AA',
fillOpacity: 0.01,
strokeWeight: 1,
strokeColor: '#0000CC',
strokeOpacity: 0.8
});
circle.bindTo('center', marker, 'position');
}
map.fitBounds(latlngbounds);
var listener = google.maps.event.addListenerOnce(map, "idle", function()
{
var zoomLevel = parseInt(map.getZoom());
if (zoomLevel > 13)
map.setZoom(13);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
본문>
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31