J'ai le code suivant pour afficher la fenêtre d'informations sur la carte google lorsque le marqueur est cliqué comment puis-je ajouter des onglets aux infowindows qui utilise extinfowindows, quelqu'un peut-il aider à tracer le problème.comment ajouter des onglets à infowindow qui utilise extInfoWindows pour google map
function createMarker(point, name, address, imagepath) {
var marker = new GMarker(point, gicons[imagepath]);
var html1 = '<span class="name-tab"><b>' + name + '</b></span> <span class="info"><br/>' + address + '</span>';
GEvent.addListener(marker, 'click', function() {
marker.openExtInfoWindow(
map, "simple_example_window", html1, {
beakOffset: -4
});
});
}
Cela ne fonctionne pas comme prévu mais ce http://stackoverflow.com/questions/5177705/google-maps-infowindow-not-showing-the-tabs-as-it-should corrige le problème :) –