In this app I am trying to have a user enter GPS coordinates and then a range to search, so enter: latitude, longitude, and distance in km. How do I validate GPS coordinates?
should I just have some method that checks if latitude is between -90 to 90 and if longitude is between -180 and 180 or is there a better way?
For users will just enter coordinates into an EditText window. There is probably a much better way to do this...any references that I should be reading?