[android-developers] Re: how do i know if i am on road between two points in android

2011-12-02 Thread PaulH
Roads don't necessarily travel in a straight line between two points. On Dec 2, 1:10 am, TreKing treking...@gmail.com wrote: On Thu, Dec 1, 2011 at 5:49 AM, PaulH paul.harti...@gmail.com wrote: how can I check if my current location is in the zone if I have only the start point and end

[android-developers] Re: how do i know if i am on road between two points in android

2011-12-02 Thread cellurl
some api's return the accuracy, closeness to the point. I would dig in google-map-api or ask on their group. -cellurl Speederaser: No more tickets http://goo.gl/iIKqD On Dec 2, 3:00 am, PaulH paul.harti...@gmail.com wrote: Roads don't necessarily travel in a straight line between two points.

Re: [android-developers] Re: how do i know if i am on road between two points in android

2011-12-02 Thread Miguel Morales
This is really easy if you use your own server. Simply store lat/long values for the points you'd like. To get points near another point construct a lat/long perimeter around it. Basically, like a rectangle you'll have a start x,y lat/long pair and an end lat/long pair. You can then query your

[android-developers] Re: how do i know if i am on road between two points in android

2011-12-01 Thread gjs
Hi, This might help http://www.movable-type.co.uk/scripts/latlong.html Regards On Dec 2, 12:10 pm, TreKing treking...@gmail.com wrote: On Thu, Dec 1, 2011 at 5:49 AM, PaulH paul.harti...@gmail.com wrote: how can I check if my current location is in the zone if I have only the start point