Wasn't it Mike who wrote:
>
>As best as I can figure, you can get a list of the number of markers
>in the GGeoXml object by the count of the 'nc' elements. example:
>
> var geoXml = new GGeoXml( url );
> GEvent.addListener(geoXml, 'load', function() {
> if (geoXml.loadedCorrectly()) {
> alert( geoXml.nc.length ); // <== THIS GIVES US THE NUMBER OF
>ELEMENTS LOADED.
> }
> });
>
>Someone could correct me if I'm wrong.
The problem with that is that the names of unexposed symbols change
every time there's a new release. The obfuscator allocates symbol names
in alphabetical order. If one extra variable gets added earlier in the
code 'nc' will become 'nd' in the next release, etc.
--
Mike Williams
http://econym.org.uk/gmap
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---