If you have your geolocations in a database, you could load them
dynamically through Javascript and an Ajax call.

ex:

        var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();


        var swlat = southWest.lat();
        var nelat = northEast.lat();
        var swlng = southWest.lng();
        var nelng = northEast.lng();



On Sep 23, 3:14 am, Dom <[email protected]> wrote:
> Hi,
>
> I have a map that is loading a lot of markers (6000+) from a XML file.
> It is very long.
> Is there a solution to manage this ?
> For instance, only load markers at a specific zoom and only display
> markers that are near the place I am looking ?
>
> Dominique

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to