On 12 January 2012 09:24, nalivayev <[email protected]> wrote: > Is it possible to get a piece of card with a static API > Using a keyword? For example, knowing the name of the country, get it > survey map? At this point, as I imagine can only be a bunch: > geocoder (the definition of coordinates) + static API (get coordinates > images). Thanks in advance for your answers!
The format of the URL is described in the documentation. http://code.google.com/apis/maps/documentation/staticmaps/index.html You can specify places by name and get the API to do the geocoding, but you still need to specify the size and zoom: http://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400&sensor=false If you want to use a keyword, you could use a link-shrinker. This link is the same map as the above link: http://tinyurl.com/Berkeley-CA-map -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
