(In a normal map i have a KML FILES and manage it wit GGeoXml()
Exist a limit for the characters passed in a url of static map?
http://maps.google.com/maps/api/staticmap?center=37.386052,-122.083851&zoom=13&markers=
[MY 750 OR 1500 MARKERS]
Many thanks.
Best regards.
On 5 Apr, 13:38, niepere <beds...@gmail.com> wrote:
> Hi guys
> i need to print many marker to a static MAP (75,150,350,750,1500 or
> more!).
>
> (In a normal map i have a KML FILES and manage it wit GGeoXml()
>
> Exist a limit for the characters passed in a url of static map?
>
> http://maps.google.com/maps/api/staticmap?center=37.386052,-122.08385...
--
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 google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
For several hundred markers, you will have to add a "skin" over your
static map. It means your user's device will have to be able to
support very basic CSS and/or JavaScript to have overlapping DIVs. It
has several advantages over the static map approach. Your markers can
be "clickable". You can change your "skin" without requesting another
static map which depletes the user's quota.
Thanks!