In direct answer to
>Is Geocoding API for premier clients only?
No you can geocode 2000 addresses a day, which looks like loads more
than you will need. It is very simple
http://maps.google.com/maps/api/geocode/json?address=Dublin,Ireland&sensor=false
gives you back a load of stuff the main thing being the location lat/
long

Your quoted code is from the javascript maps api V3

There are a lot of options available which, though confusing at first,
lets you choose depending on your requirements.
You could just find the lat/long of each place (by http geocodeing
api, or by hand etc...) and add it to a kml file and display it on the
map.
You could use a static map and declare markers with the addresses as
parameters.
Use the javascript maps api, doing Geocoder calls to find the lat/
longs for each marker that you create.


There is a good blog article on whether to use server or client-side
geocoding.

http://code.google.com/apis/maps/articles/geocodestrat.html

tim


-- 
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