Reputation: 1156
I am trying to create a map like this here:
How can i that be achieved?
How to show it on android?
How would i add a course/path to it? how to show that on android ?
All I know that it is just an Image, How is it possible to pin-point a place on an Image on Android :
Here is a link to the app that has these features.
Upvotes: 1
Views: 928
Reputation: 16277
How can i that be achieved?
You need 3D models such as OBJ, FBX, STL files etc. You also need some texture images. And all theses are usually referred to as ASSETS.
How to show it on android?
You need some 3D graphics framework or implement your own OpenGL renderers. Some well known 3D toolkits include:
How would i add a course/path to it? how to show that on android?
You need to implement that on your own. You might place a few anchor points and connect them in network/graphs.
Upvotes: 1