Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

329
Views
How to update infowindow of a marker?

enter image description here

 for(i=0; i<locations.length; i++) {
        var position = new google.maps.LatLng(locations[i][2], locations[i][3]);
        var marker = new google.maps.Marker({
            position: position,
            map: map,
        });
        google.maps.event.addListener(marker, 'click', (function(marker, i) {
            return function() {
                infowindow.setContent(locations[i][1]);
                infowindow.setOptions({maxWidth: 200});
                infowindow.open(map, marker);               
            }
        }) (marker, i));
        Markers[locations[i][4]] = marker;
    }

I have map has multiple markers with infowindows my aim is to update marker infowindow but could not manage to find a solution.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

If you are trying to store i in closure then you can do it like this: Demo JsFiddle

  for (let i = 0; i < locations.length; i++) {
    let position = new google.maps.LatLng(locations[i][1], locations[i][2]);
    let marker = new google.maps.Marker({
      position: position,
      map: map,
      title: locations[i][0]
    });

    google.maps.event.addListener(marker, 'click', function (event) {
      let content = `<b>${locations[i][0]} </b><br>
            ${locations[i][3]}<br>
            Position: ${event.latLng.lat()}, ${event.latLng.lng()}`;

      infowindow.setContent(content);
      infowindow.setOptions({ maxWidth: 200 });
      infowindow.open(map, marker);
    });
  }

Or you can get position from event object event.latLng.lat() and get the location using it.


Or you can have separate info window for each marker.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!