为什么我的infowindow空?

时间:2012-10-11 16:39:55

标签: javascript google-maps google-maps-api-3

嗨我已经制作了一张谷歌地图api v3地图,其中有2张infowindow onclick on the marquer,

但是infowindows是空的:

        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);
    });

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

由于

1 个答案:

答案 0 :(得分:0)

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

style.css:10
* { 
    z-index: 10;   
}