?? jquerysamplescript.js
字號:
$(function () {
var address = ['東方明珠電視塔', '浦東體育公園', '莘莊地鐵站', '上海體育館'];
var southWest = {}, northEast = {};
var map = new google.maps.Map($('#map_canvas')[0], {
zoom: 8,
scaleControl: true,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
$.each(address, function (index, value) {
(new google.maps.Geocoder()).geocode({
'address': value
},
function (results, status) {
if (status !== google.maps.GeocoderStatus.OK) return;
var location = results[0].geometry.location;
southWest.lat = southWest.lat < location.lat() ? southWest.lat : location.lat();
southWest.lng = southWest.lng < location.lng() ? southWest.lng : location.lng();
northEast.lat = northEast.lat > location.lat() ? northEast.lat : location.lat();
northEast.lng = northEast.lng > location.lng() ? northEast.lng : location.lng();
map.fitBounds(new google.maps.LatLngBounds(
new google.maps.LatLng(southWest.lat, southWest.lng),
new google.maps.LatLng(northEast.lat, northEast.lng)
));
var marker = new google.maps.Marker({
map: map,
position: location,
title: value
});
google.maps.event.addListener(marker, 'click', function() {
(new google.maps.InfoWindow({
content: '<p id="locationTitle">'+value+'</p><p>緯度:'+location.lat()+'</p><p>經度:'+location.lng()+'</p>'
})).open(map, marker);
});
});
});
});
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -