Calin
Calin
This is probably because the map data didn't update successfully. Make sure you download and add the correct map in your app.
The map is shown using MBXMapKit from Mapbox and is configured in [ViewController.m#L90](https://github.com/graphhopper/graphhopper-ios/blob/master/graphhopper-ios-sample/graphhopper-ios-sample/ViewController.m#L90). At the time it was the easiest way to display a map, within the sample app. However,...
After cloning, switch to the 0.8.2 tag since master is using GraphHopper 0.9.0, but we're not there yet. ``` git checkout tags/0.8.2 git submodule update --recursive ```
Make sure you checkout the 0.8.2 tag instead of using master (`git checkout 0.8.2; git submodule update --init`). See https://github.com/graphhopper/graphhopper-ios/issues/23#issuecomment-323340504
graphhopper-ios uses [J2ObjC](https://developers.google.com/j2objc/) to translate GraphHopper's Java sources to Objective-C. So the actual GH sources will always be Objective-C, however they can be bridged and used from Swift. There are...
Yes, unfortunately I can't maintain this repo at this moment, but I'm glad to help with any questions.
This project hasn't been updated to the latest versions of graphhopper unfortunately. I cannot maintain this project, so if anyone else wants to update it, that will be welcomed.
Can't build the project in Xcode either, I get the following: ## /Users/calin/Documents/Xcode/Libraries/mapnik-ios-framework/Mapnik-Example/Prefix.pch:20:9: fatal error: 'mapnik/graphics.hpp' file not found #import ^ 1 error generated. ## The mapnik library is not...
Thanks for the reply. It certainly helped, however after like 10 minutes it stopped at this screen:  I'll try to debug this myself. Thanks!
Breakpoints are not working for me in an included file. Start the debugger, Step, the included file opens successfully in a new window, but any breakpoints in that file are...