Al final me cree el sistema yo. Muy facil. La API de Google MAPS es una maravilla sin duda.
Con eventos click en el mapa.
Código Javascript
:
Ver originalvar route = [
new google.maps.LatLng(45.964,-5.65),
]
var ruta = new google.maps.Polyline({
path: route,
strokeColor: "#EEC80F",
strokeOpacity: 0.85,
strokeWeight: 8,
map: map
})
google.maps.event.addListener(map,'click',function(e) {
route.push(e.latLng);
ruta.setPath(route);
})
Un saludo :)