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.