Question

I'm using some map based images in an Android app, and each map includes numbered waypoints and highlit paths between each waypoint. This map data has all been hard-coded into the map image.

My client would like to be able to click on each waypoint and display some associated info in a popup. So would anyone be able to suggest what might be the easiest way to attach the popup data to the image based waypoint location?

I thought perhaps using an image recognition algorithm to scan for each way point position, but that probably wouldn't be completely accurate and also resource intensive.

Is my only feasible option to ask the client to supply something like associated xml metadata for each waypoint location?

Was it helpful?

Solution

I would definitely go the route of additional data. It would be way too expensive to extract the points on the go.

Although you'll have some fun translating the points on the map to points on the screen.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top