Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to show the route on a map in different colors?
Posted

1 solution

You have to use the directionsRenderer object.
Try with this code in your api

C#
directionsDisplayActual = new google.maps.DirectionsRenderer({suppressMarkers: true, polylineOptions: polylineOptionsActual})

var polylineOptionsActual = {
      strokeColor: '#FF0000',
      strokeOpacity: 1.0,
      strokeWeight: 10
      };


For more reference refer:-
https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints[^]
https://developers.google.com/maps/documentation/javascript/examples/directions-simple[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900