On Sep 10, 1:29 pm, Syam <[email protected]> wrote: > > This is good option, But I need to make a KML file. for creating Geo > sitemap. > So I need to get the geo cordinates throug ASP.
No you don't. Have the user find the coordinates and pass them back to the server along with the new address. When you update your database with the new address and the coordinates, you already have the geo coordinates to create the KML. You don't need server-side geocoding at all, and you are practically guaranteed to have accurate coordinates, which may not be the case if you rely entirely on the geocoder. However, if you insist on doing things server-side, it's just a question of writing ASP code to do that. You need to issue an HTTP request, get [say] an XML response and then parse it. Server-side code is outside the scope of this group, but the data structures are at http://code.google.com/apis/maps/documentation/geocoding/index.html and there is more information at http://www.google.com/search?q=HTTP+request+ASP and http://www.google.com/search?q=parse+XML+ASP 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 -~----------~----~----~----~------~----~------~--~---
