On Nov 29, 9:17 pm, hitesh kumar yadav <[email protected]> wrote: > Hi everyone, > > I am using a Google map in my project to show markers on my map using > two techniques. > > One I do by overlaying separate markers using addOverlay() method. > > Other's, I do by using KML files and use the following methods: > > var geoXml = new GGeoXml(file); > map.addOverlay(geoXml); > where file is the URL for the KML file that is being hosted on a > server. > > Now for the two of the methods I can easily do clustering of those > markers that are added separately, that is, by the first method I am > using. > > I want to do the clustering of KML data but am not able to do so. > > Is it possible to do so.
Not using GGeoXml. It doesn't expose the overlays. You can do it using a third party KML parser: GeoXml: http://www.dyasdesigns.com/geoxml/ EGeoXml: http://econym.org.uk/gmap/egeoxml.htm (or writing your own) -- Larry > I would be obliged for any of your help. > > Thanx and Regards, > Hitesh. -- You received this message because you are subscribed to the Google Groups "Google Maps API" 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-api?hl=en.
