I am working on a GPS application and was toying with the idea of putting markers around the user like in Zombie Run and SpecTrek but am completely confused about how to find out the locations around the user.
I have been looking at the documentation for the Location class and have used the distanceTo() function for other things as well as MapView's latitudeSpan(), longitudeSpan() and getProjection() functions but I can't think how to decide on locations that are, for example, 100 metres around the user.
As I know the users position and I am only going to be placing markers that are ~1km away from the user, at the most, can I treat the area as flat rather than ellipsoidal and so then just could take the user's longitude and latitude and +/- from them to plot a marker around them (using some basic trigonometry such as x = cos(radius) and y = sin(radius) to keep it within the radius-sized circle around the player)?
I don't understand how long/lat correspond to actual scalar distances as in would 100long 100lat be 10 metres away from 90long 100lat? (I know these values are completely wrong but just using them to illustrate my question).
Thanks for your time,
Infinitifizz