0

嗨,我制作了一个 google map api v3 地图,带有 2 个 infowindow onclick onclick on the marquer,

但是信息窗口是空的:

        var carte = new google.maps.Map(document.getElementById("Gmap"), options);
    var marqueur = new google.maps.Marker({
        position: new google.maps.LatLng(43.546993,5.441062),
        map: carte
    });
            var marqueur2 = new google.maps.Marker({
        position: new google.maps.LatLng(43.529038, 5.45251),
        map: carte
                });

        var infowindow = new google.maps.InfoWindow({
        content: "<div id='content' style='color:#000 !important'>Hammam des Prêcheurs, 10 rue Felicien David 13100 Aix en Provence</div>"
    });

        var infowindow2 = new google.maps.InfoWindow({
        content: "<div id='content2' style='color:#000 !important'>Salle Clos Beaufort 560, Rte Puy Ste Réparade, 13540 Puyricard</div>"
    });
        infowindow.open(carte, marqueur);
        google.maps.event.addListener(marqueur, 'click', function() {

        infowindow.open(carte, marqueur);
    });

        google.maps.event.addListener(marqueur2, 'click', function() {

        infowindow2.open(carte, marqueur2);
    });

有什么办法解决这个问题吗?

谢谢

4

1 回答 1

0

这是这个 css 规则(在style.css中):

style.css:10
* { 
    z-index: 10;   
}
于 2012-10-11T20:39:38.670 回答