I want my directions look like the one in the image I provided.
Here is my code, almost everything is from example on Google website.
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
<script>
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var haight = new google.maps.LatLng(37.7699298, -122.4469157);
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer();
var mapOptions = {
zoom: 14,
center: haight
}
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
directionsDisplay.setMap(map);
}
function calcRoute() {
var request = {
origin: START, // Ill add both places later
destination: END,
travelMode: google.maps.TravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
setTimeout(function(){
calcRoute();
}, 2000);
</script>
PS. Is it possible to display "dotted" path for directions as you can see in the picture ?
You need to create a Symbol (SVG or SymbolPath), include it as in an IconSequence in the PolylineOptions which you finally pass to the DirectionsRenderer.
Working code snipped below.