I'm using react-google-maps to render map in website. I have a problem about strokeColor for each line when using waypoints for DirectionsService. How to change strokeColor between them and how to callback after using DirectionsService . This is my source same example:
https://tomchentw.github.io/react-google-maps/#directionsrenderer
let DirectionsService = new google.maps.DirectionsService;
var directionsDisplay = new google.maps.DirectionsRenderer;
DirectionsService.route(
{
origin: new google.maps.LatLng(10.8441402, 106.76757429999999),
destination: new google.maps.LatLng(10.8463797,106.7721405),
travelMode: google.maps.TravelMode.DRIVING,
optimizeWaypoints: true,
waypoints: [
{
location: new google.maps.LatLng(10.8454946,106.764759),
stopover : false
}
]
},
(result, status) => {
console.log(result);
if (status === google.maps.DirectionsStatus.OK) {
this.setState({directions: result})
return (typeof callback == 'function') && callback( result);
} else {
console.error(`error fetching directions`, result);
}
}
);
Thanks about help