For a first year school project, I want to build a wayfinder for new students to find our campus.
So I need to make a route from point A (current geolocation) to point B (fixed location/campus coordinates).
This is all still a bit tricky and new for me to find out and I couldn’t find any documentation or tutorial about this.
Would be great if someone could guide me a bit along the way!
Thanks!
I work with the iOS SDK. There’s a class LocationManager which tracks the location updates. I get the lastLocation from here to know the current location of the user.
Once you have the user’s current location, you have the minimum 2 points required to draw the route.
Hope these help you to get started with the project, Michiel!
Okay! Great! I’ve managed to finally load the code onto my hosting and am able to use it the same way as the A-B route example. Which already feels amazing to be honest haha.