Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/10/2011, 08:47
Avatar de Patriarka
Patriarka
 
Fecha de Ingreso: enero-2011
Ubicación: Moreno, Buenos Aires, Argentina
Mensajes: 2.851
Antigüedad: 13 años, 2 meses
Puntos: 288
Respuesta: Superposiciones en google maps con movimiento

mostrame la funcion que hace eso,
pero en resumen seria algo asi:
Código Javascript:
Ver original
  1. function actualizaMapa(){
  2. //GENERERO MAPA EN EL DIV ID="MAPA"
  3. //PARA NO REESCRIBIR ENCIMA DEL MAPA ENTONCES
  4. document.getElementById('MAPA').innerHTML="";
  5. setTimeOut("actualizaMapa()", 3000); //ACTUALIZO EL MAPA CADA 3 SEGUNDO
  6. }