var flightPlanCoordinates = [
new google.maps.LatLng(24.25,120.7),
new google.maps.LatLng(21.291982, -157.821856),
new google.maps.LatLng(-18.142599, 178.431),
new google.maps.LatLng(-27.46758, 153.027892)
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 2,
editable: true
});
google.maps.event.addListener(map, 'click', function(event) {
console.log(event);
flightPlanCoordinates.push(event.latLng);
flightPath.setMap(null);
flightPath.setMap(map);
});