On Apr 15, 11:13 am, Arvind Rangan <[email protected]> wrote:
> Hi,
>
> On click over the map point we get LatLng, how do we separate it ? sorry
> might be very simple but can anyone show me or any example available.

It's usually not a bad idea to look at the documentation:
http://code.google.com/apis/maps/documentation/reference.html#GLatLng.lat

var pos = new GLatLng( ... );
var lat = pos.lat();
var lng = pos.lng();

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