I need to add listener for directions markers, but haven't any access. How can I get access to direction markers like a simple markers? Sorry for my terrible english, i hope you understand me.

UPD: I create new route:

var request = {
    origin: someorigin,
    destination: somedestination,
    travelMode: google.maps.DirectionsTravelMode.DRIVING
};

directionsService.route(request, function(response, status){
    if (status == google.maps.DirectionsStatus.OK){
        directionsDisplay.setDirections(response);
    }
});

And now i want to have access for origin and destination markers.

link|improve this question

60% accept rate
so you want to create a origin and a destination markers basd on the direction? – kjy112 Apr 2 '11 at 12:22
no, i want to work with green "A" and "B" (origin and destination) markers like with a simple red markers: delete them or add listeners. – Ardentum Apr 2 '11 at 12:26
so you are not able to access someorigin and somedestination markers after directionsService? – kjy112 Apr 2 '11 at 12:27
But someorigin and somedestination - is a LatLng objects, not a markers. – Ardentum Apr 2 '11 at 12:29
@Ardentum so you want to know how to create a marker right? – kjy112 Apr 2 '11 at 12:33
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

You cant access markers added to the map via the google.maps.DirectionsRenderer class. You can however use the suppressMarkers option, just render the pollyline route and then add your own start and destination markers with your own events.

hope this helps.

link|improve this answer
1  
Thank you. I thoght about it, but this solution have some limitations in case when i want to drag the marker. In this situation i must use setinterval() and render the route again. – Ardentum Apr 2 '11 at 21:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.