Example here: http://gmaps-samples.googlecode.com/svn/trunk/geonames/reversewebservices.html
If you don't want to use "Dynamic Script loading", the you have to use a XLM proxy on your own server. Simple example in PHP: <?php $gnp = $_GET['params']; // "srtm3?lat=50.101&lng=10.05" $url = 'http://ws.geonames.org/' . $gnp; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); ?> On 1 Sep., 12:54, ylos <[EMAIL PROTECTED]> wrote: > Thanks marcelo > > So what i can use instead of GDownloadUrl to can retrieve the data > REgards > On Sep 1, 1:45 pm, marcelo <[EMAIL PROTECTED]> wrote: > > > On Sep 1, 12:40 pm, ylos <[EMAIL PROTECTED]> wrote: > > > You cannot use GDownloadUrl() to get data from another domain than > > your > > own.http://code.google.com/apis/maps/documentation/reference.html#GDownlo... > > > -- > > Marcelo -http://maps.forum.nu > > -- --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
