如何用Google地圖做這種彈出式菜單? 轉到http://www.flightradar24.com/並點擊一個機場,可以看到彈出窗口是完全個性化的。 因此,我設法在谷歌地圖上創建彈出窗口,但現在我沒有看到這是如何爲每個彈出窗口提出不同的消息。 如何自定義與CSS和JavaScript的彈出包括裏面? 所以,現在我在這裏,我想知道如果我的腳本是正確的,以及如何以後如何達到像Flightradar24機場的彈出?自定義彈出式Google地圖
<script type='text/javascript'> $(function(){function initialize() {
var mapOptions = {
zoom: 4,
disableDefaultUI: true,
center: new google.maps.LatLng(45.35, 4.98),
mapTypeId: google.maps.MapTypeId.TERRAIN
}
var map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
addMarkerWithWindow("This is Lemans", new google.maps.LatLng(48.006922, 0.20874), map);
addMarkerWithWindow("This is Paris", new google.maps.LatLng(48.856291, 2.352705), map);
}
function addMarkerWithWindow(name, coordinate, map) {
var popup=$('<div/>', {
content: name
});
var image = 'rss.png';
var marker = new google.maps.Marker({
map: map,
icon: image,
position: coordinate
});
var styles = [
{
featureType: "all",
stylers: [
{ saturation: -15 },
{ lightness: -10 },
]
},
];
map.setOptions({styles: styles});
// jQuery
var popup=$('<div/>', {
'id':'This is Lemans',
'text':'Hello World!'
}).dialog({
'autoOpen':false,
'width': 600,
'height':600,
'resizable':false,
'modal':false,
'title':'Le Mans'
});
google.maps.event.addListener(marker, 'click', function(e) {
console.log(e);
popup.dialog('open');
});}initialize();});//]]> </script>
'marker'僅在'addMarkerWithWindow定義()'需要該功能 – charlietfl