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- <script type="text/javascript"> 
-  function start() { 
-   initialize(); 
- } 
- window.onload = start; 
-  </script> 
- <script type="text/javascript"> 
- function initialize() { 
- ... 
- } 
simplemente por  
Código Javascript
:
Ver original- window.onload=function(){ 
- ... 
- } 
(Cada cual tiene derecho a tener sus manías) 
