> With reference to out
> original example is it possible to add another marker by using address
> information only and not having to type in lat long coordinates?

Yes.  But only indirectly.  You have to write some code that sends the
address information to be geocoded.  When the geocoding results come
back, place your marker at the given lat/long.

A start would be modifying the given example like so
function codeAddress( somestring ) {
   var address = somestring;
    if (geocoder) { ......
so that you can call codeAddress (yourowndata)

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