Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mapping GPS points with Augmented Reality

I'm trying to make a Windows Phone app that shows GPS points on the camera using Augmented Reality. I've been looking for tutorials online but I can't find any anywhere that explain how to do it. I was wondering if anybody knew of any good tutorials that explain combining AR with GPS, or if anybody could give me any tips on where to begin (I don't expect a detailed explanation or anything). Even a tutorial on how to do it with Android would be a start.

like image 347
Jean Finley Avatar asked Feb 14 '12 16:02

Jean Finley


2 Answers

Take a look at the "Geo Augmented Reality Toolkit" on Codeplex. It abstracts nearly all complex tasks for you, you just have to add some points with their coordinates and what to display and everything else works with a couple lines of code.

http://gart.codeplex.com/

like image 187
Anheledir Avatar answered Sep 20 '22 03:09

Anheledir


Knowing where the device is currently located using (which is quite easy, at least on Android) and the relative positioning of closest (this is up to implementation) GPS marks (these should be loaded from somewhere obviously).

Magnetometer should give you where you're facing the device, which gives you the bearing (e.g. 180º = bearing south). This way you can calculate a vision cone of which markers you want to show.

You only need to draw stuff over the camera image ;)

like image 40
m0skit0 Avatar answered Sep 21 '22 03:09

m0skit0