Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3950458
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:36:51+00:00 2026-05-20T01:36:51+00:00

I have a bit of a puzzle on my hands. I’m Using Google Maps

  • 0

I have a bit of a puzzle on my hands. I’m Using Google Maps v3 and MarkerClusterer v3. When I load my page, the map appears, the points are all there, but nothing is clustered.

If I go to the firebug console and do:

markerCluster = new MarkerClusterer(map, markers);

Suddenly clustering works.

Weirdly, If I put an alert between the map instantiation and the markerclusterer instantiation, again clustering suddenly works.
Here is the end of my $(document).ready function:

    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    markerCluster = new MarkerClusterer(map, markers);

and all it takes to make the clustering work is:

    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    alert("test");
    markerCluster = new MarkerClusterer(map, markers);

What am I missing here? Do I need to refresh the map somehow? Is that what is happening with the alert box?

If you need more code drop me a comment.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T01:36:52+00:00Added an answer on May 20, 2026 at 1:36 am

    Here is a lightly edited version of what I ended up using. I’m giving most of script here so people can get an idea of the context each function is happening in as well as the scope of everything. Hopefully this will save someone some head scratching.

    var initialize = function(){
    
        var markers = [];
        var infowindow = new google.maps.InfoWindow();
    
        function load_content(marker, id){
            $.ajax({
                url: 'eventos/' + id,
                success: function(data){
                    infowindow.setContent(data);
                    infowindow.open(map, marker);
                }
            });
        }
    
        var opt = { ...options...}
    
        var map = new google.maps.Map(document.getElementById('map_canvas'), opt);
    
        map.setCenter(new google.maps.LatLng(-44.4419, 170.1419));
        map.setZoom(9);
    
        $.ajax({
            url: 'eventos/',
            method: 'GET',
            dataType: 'json',
            success: function(data){
    
                $.each(data, function(i, a){
    
                    var latlng = new google.maps.LatLng(a.evento.lat, a.evento.lng);
    
                    var marker = new google.maps.Marker({
                        position : latlng,
                        title: a.evento.title
                    });
    
                    google.maps.event.addListener(marker, 'closeclick', function() {
                        infowindow.setContent("");
                    });
    
                    google.maps.event.addListener(marker, 'click', function() {
    
                        infowindow.close();
    
                        infowindow.setContent("<img src='loading.gif'>");
    
                        load_content(marker, a.evento.id);
                    });
    
                    markers.push(marker);
                });
    
                var markerCluster = new MarkerClusterer(map, markers);
    
            }
    
        });
    
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bit of code that basically reads an XML document using the
I have a bit of a hybrid situation on my hands. I'm writing an
I have a bit of a puzzle (at least for me) which I am
I have this bit of javascript written with jQuery 1.2.5. It's contained inside the
I have a bit of code that passes around a ton of objects and
I have a bit of html like so: <a href=#somthing id=a1><img src=something /></a> <a
I have this bit of script to widen a text box on mouseover and
I have a bit of an unusual question. I'm running an old DOS game
I have a bit of a problem. I wrote an API a long time
I have a bit of code that looks like this: text = reg.Replace(text, new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.