hola como estas la dirección del satélite que ayer entre descubrí lo peligroso 
que esta nuestro planeta con razón los cientificismos se preocupan en encontrar 
una nueva tierra eso quiere decir que estamos ido hermano    


________________________________
 De: xelawho <[email protected]>
Para: Google Maps API V2 <[email protected]> 
Enviado: sábado, 11 de febrero de 2012 10:30
Asunto: [Google Maps API v2] Re: How to get the current Lat and Lng of a Marker 
by click
 
depends on how you set up your marker, but probably something like
this:

GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(marker.getLatLng().toString());
        });

if you are creating the listener within the function that holds the
location of the marker (let's say in a variable called "point"), it
could be simpler:
GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(point.toString());
        });

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" 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.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" 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