Google map : Marker et DirectionsService

Résolu
Fallentree Messages postés 2445 Statut Membre -  
Fallentree Messages postés 2445 Statut Membre -
Bonjour,

je ne trouve pas les indications sur les markers liés au DirectionsService ...
C est dommage ...
comment faire pour y ajouter un coment ????

2 réponses

  1. Fallentree Messages postés 2445 Statut Membre 210
     
    Bref ...
    Il faut recreer des markers Et y associer des infowindows approprier a l evenement onclick ...
    Biensur passer par une fonction de geolocalisation en fonction de l adresse

    Voici un bout de code sur les evenement du marker ...
    var marker = new google.maps.Marker( { 
                            position: response[0].geometry.location, 
                            map: maper, 
                            title: lieu   }); 
                        var infowin = new google.maps.InfoWindow({ 
                            content: "hello world", 
                            position: response[0].geometry.location 
                            }); 
                        google.maps.event.addListener(marker, 'click', function() { 
                                    infowin.open(maper, marker);});
    0