Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/12/2011, 20:44
mariomon17
 
Fecha de Ingreso: noviembre-2009
Mensajes: 846
Antigüedad: 15 años
Puntos: 34
Respuesta: Google Maps API Polyline

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 original
  1. var route = [
  2.        new google.maps.LatLng(45.964,-5.65),
  3.        ]
  4.  
  5.     var ruta = new google.maps.Polyline({
  6.     path: route,
  7.         strokeColor: "#EEC80F",
  8.         strokeOpacity: 0.85,
  9.         strokeWeight: 8,
  10.         map: map
  11.     })
  12.  
  13.     google.maps.event.addListener(map,'click',function(e) {
  14.         route.push(e.latLng);
  15.         ruta.setPath(route);
  16.     })

Un saludo :)