On Mar 2, 10:41 am, "[email protected]" <[email protected]>
wrote:
> On Mar 2, 10:16 am, "[email protected]" <[email protected]> wrote:
>
> >http://www.geo24.pt/mapafinalexp.php...
> > what i want its there... as you can see the reverse geocoding appears
> > on the alert... But i dont want that.. i want to display the reverse
> > geocoding on a tab inside the map..
> > the problem its simple..
> > The problem its my knowledge on this kind of thinks...
>
> I don't think the geocoder knows anything about that 
> location:http://www.geocodezip.com/example_geo2.asp?addr1=38.758200,%20-9.2202...
>
> which is a little surprising, since google supports geocoding in
> portugal:http://gmaps-samples.googlecode.com/svn/trunk/mapcoverage_filtered.html
>
> You may want to use the known address if you have one.

If you want to put the contents that are returned by your "reverse
geocoder" in there, you need to create a div element inside the
infoWindow tab, and assign it an id.
  new GInfoWindowTab("Local", "<div id='revgeo'>I want here!!</div>"),


Then when your reverse geocoder returns its results, put them in that
div:
GEvent.addListener(reversegeocoder, "load",
          function(placemark) {
            document.getElementById("revgeo").innerHTML =
placemark.address;
          }
        );

(Note: the above code assumes the infoWindow exists when the reverse
geocoder returns its results.  If that is not always true, you will
need to add code to handle that case)

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

Reply via email to