Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. /* marker[0]~[4] infowindow[0] は for 文で回したというのに…! */
  2.  
  3. google.maps.event.addListener(marker[0], 'click', function() {
  4. infowindow[0].open(map,marker[0]);
  5. });
  6. google.maps.event.addListener(marker[1], 'click', function() {
  7. infowindow[1].open(map,marker[1]);
  8. });
  9. google.maps.event.addListener(marker[2], 'click', function() {
  10. infowindow[2].open(map,marker[2]);
  11. });
  12. google.maps.event.addListener(marker[3], 'click', function() {
  13. infowindow[3].open(map,marker[3]);
  14. });
  15. google.maps.event.addListener(marker[4], 'click', function() {
  16. infowindow[4].open(map,marker[4]);
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement