Ver Mensaje Individual
  #6 (permalink)  
Antiguo 04/12/2012, 07:33
txemaarbulo
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: google map v3, 3 maps on same page

Si, todas comenzarían igual (así no caemos en el error de si algo se repitio o se sobreescribe).
Al tener IDs diferentes, cada cual irá al suyo (a su mapa).

La función te la hace igual pero yo suelo reducir tu código
Código Javascript:
Ver original
  1. <script type="text/javascript">
  2.  function start() {
  3.   initialize();
  4. }
  5. window.onload = start;
  6.  </script>
  7. <script type="text/javascript">
  8. function initialize() {
  9. ...
  10. }
simplemente por
Código Javascript:
Ver original
  1. window.onload=function(){
  2. ...
  3. }

(Cada cual tiene derecho a tener sus manías)