<頭>
地理的位置
<スタイル>
html、本文、#map-canvas {
マージン: 0;
パディング: 0;
高さ: 100%;
}
https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false">>
<スクリプト>
var マップ;
var ポリ;
関数初期化() {
var myLatlng = 新しい google.maps.LatLng(31.1937077, 121.4158436);
var location = [
['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
};
map = new google.maps.Map(document.getElementById('map-canvas'),
マップオプション);
// 線条设置
var PolyOptions = {
ストロークカラー: '#00ff00', // 颜色
ストローク不透明度: 1.0, // 透明度
ストロークウェイト: 4 // 宽度
}
Poly = new google.maps.Polyline(polyOptions);
ポリ.setMap(マップ); // 装填
/* 循環标出全部坐标 */
/*for(var i=0; i
var loc = [];
loc.push(場所[i][1]);
loc.push(場所[i][2]);
var パス = Poly.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 < location.length; i ) {
var loc = [];
loc.push(場所[i][1]);
loc.push(場所[i][2]);
var パス = Poly.getPath(); //获取線条の坐标
path.push(new google.maps.LatLng(loc[0], loc[1]));
var latlng = new google.maps.LatLng(場所[i][1], 場所[i][2]);
latlngbounds.extend(latlng);
if (locations[i][0].indexOf("[キャッシュ") == 0 || (locations[i][0].indexOf("[Multiple") == 0 && location[i][0]。 IndexOf("[キャッシュ済み") >= 0 )) {
マーカー = 新しい 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