On Dec 9, 3:59 am, Miki <[EMAIL PROTECTED]> wrote: > It looks simple but I can't figure out. I'd like to be able to load > this map to look just like after I click "Go" on address form. > > http://www.studio11homes.com/member_admin/map.cfm?propertyID=5102echo...
Add a couple of lines var centrePoint = newGLatLng(36.390131,-87.049899); map.setCenter(centrePoint,16); ...together with the other marker and infoWindow stuff you currently have. Presumably your Cold Fusion script could do an HTTP geocode on the address you currently output to the textbox. The CSV string returned from that can be parsed to find the coordinates (if the geocode is successful). Or -- preferably -- the coordinates could be stored in your database from the off so you don't need any geocoding on the fly. [I don't do CF] Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
