Glen:

If you just want to see new coordinates, you can try:

var infowindow = new google.maps.InfoWindow();

google.maps.event.addListener(marker1, 'click', function()
{
                var latitude = marker1.position.lat();
        infowindow.setContent("lat = " + latitude + "<br />" +
                              "lng = " +  marker1.position.lng());
        infowindow.open(map,marker1);
});

Thanks, Radina
On Oct 13, 4:29 pm, "[email protected]" <[email protected]>
wrote:
> On Oct 13, 3:36 pm, Glen Bass <[email protected]> wrote:
>
> > Hello:
>
> > I am attempting to create a worksheet that the user will expand a box
> > to contain a geographic area. I found this sample code and am unable
> > to determine the two sets of coordinates for each of my markers for
> > use in PHP.
>
> What have you tried to do?  I don't see any code in that page to send
> the results back to the server (where PHP runs).  I do see that the
> redraw function is accessing the updated coordinates.
>
>   -- Larry
>
>
>
>
>
> > The link for the testpage is below. Any help is appreciated
>
> >http://www.ecoexam.com/Client/testmap.php
>
> > Best Regards
>
> > Glen- Hide quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to