This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var departure = new google.maps.LatLng(-6.18049, 106.82638); //Set to whatever lat/lng you need for your departure location | |
var arrival = new google.maps.LatLng(-6.17770, 106.82141); //Set to whatever lat/lng you need for your arrival location | |
var line = new google.maps.Polyline({ | |
path: [departure, departure], | |
strokeColor: "#FF0000", | |
strokeOpacity: 0.7, | |
strokeWeight: 2, | |
geodesic: true, //set to false if you want straight line instead of arc | |
map: map, | |
}); |