> Does anybody have any idea how to dynamically create a KML file > through address that are stored in database? For example, my address > is 170 Lees Avenue, Ottawa, Canada. Now if I want to use a php > program to create the KML file
Using php to create KML is like using php to create XML, so that's one thing to look for. http://www.google.co.uk/search?hl=en&q=php+create+xml&meta=&aq=f&oq= KML has a particularstructure of course, so you'd have to follow that - http://code.google.com/apis/kml/documentation/kml_tut.html Finally, KML doesn't deal in addresses, it needs points, so you have to do some server-side geocoding - http://groups.google.com/group/Google-Maps-API/web/resources-non-google-geocoders cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
