In regards to your last question:

1.1 Use of the Service is Subject to these Terms. Your use of any of
the Google Maps/Google Earth APIs (referred to in this document as the
"Maps API(s)" or the "Service")

HTH,
Tony

On Apr 7, 9:45 am, FireHawk <[email protected]> wrote:
> Hi All,
> I have modified some code to display lat/lon coordinates in a text field on
> "mousemove" event.  Is this against the terms of use, using the service to
> display Lat/Lon Coordinates?
>
> Here's the line in the terms:
>  10.6 use the Service in a manner that gives you or any other person access
> to mass downloads or bulk feeds of any Content, including but not limited to
> numerical latitude or longitude coordinates, imagery, and visible map data;
>
> On a mousemove event, I guess that could be a mass download?
> Here is my code to do this:
>
> GEvent.addListener(map, "mousemove", function(point) {
>    LatS = point.y.toString();
>    LonS = point.x.toString();
>    numLat = Number(LatS);
>    numnegLon = Number(LonS);
>    numLon = Math.abs(numnegLon);
>    LatDeg = Math.floor(numLat);
>    LonDeg = Math.floor(numLon);
>    LatMin = Math.abs((numLat-LatDeg)*60);
>    LonMin = Math.abs((numLon-LonDeg)*60);
>    InfoLon = LonDeg +  "º " + LonMin.toFixed(4) + "'";
>    InfoLat = LatDeg +  "º " + LatMin.toFixed(4) + "'";
>    document.getElementById("lat").value = InfoLat;
>    document.getElementById("lon").value = InfoLon;
>         });
>
> Any help would be greatly appreciated.  Is there another way to get lat/lon
> coordinates to do this without using the "Service" and what does the term
> "Service" refer to in the terms anyway?

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