Any android devs here?

Soldato
Joined
16 Oct 2007
Posts
7,434
Location
UK
Any android wizards on OCUK?
I'm looking for some advice on creating a game/tool that uses image maps.
Very similar to speed geography/anatomy
But not sure the best method. It'll involve an image, the user has to click the image on the right spot, and a score will be calculated by using if a) the user has clicked on the right image or how far away and b) the time it took them.

What would be the best method?
 
Soldato
Joined
18 Aug 2011
Posts
2,853
Location
Norfolk
The timer will be quite simple.

For the map thing obviously Google Maps. Create some kind of marker where the correct spot is then have some kind of listener to track for guesses. Use Lat/Lang to calculate the errors.

LocationListener
OnClickListener

https://developers.google.com/maps/documentation/android/

I'm not an Android dev, but I did do an Android project using Eclipse for my degree that used Google Maps, timers, lat/lng etc, so hopefully it's a start for you.
 
Last edited:
Back
Top Bottom