Reputation: 3938
I've been doing mobile app that should navigate user to specific points. I've been using leaflet routing machine to do this and everything works fine in browser, but after deploying it to phone, whole navigation disappears.
This one is in browser:
This one is on phone:
Have anyone had the same issue?
Upvotes: 0
Views: 887
Reputation: 3938
So the problem was that routing machine was sending request to //router.project-osrm.org/viaroute
and I had to change it to http://router.project-osrm.org/viaroute
Upvotes: 3