Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Map Routing, a la Google Maps?

Tags:

I've always been intrigued by Map Routing, but I've never found any good introductory (or even advanced!) level tutorials on it. Does anybody have any pointers, hints, etc?

Update: I'm primarily looking for pointers as to how a map system is implemented (data structures, algorithms, etc).

like image 858
Mark Harrison Avatar asked Aug 05 '08 20:08

Mark Harrison


People also ask

Does Google Maps have a routing feature?

Google Maps has a route planning capability. You can even plan a route for many locations using Google Maps. It can serve a variety of purposes aside from driving, such as walking and biking.


2 Answers

Take a look at the open street map project to see how this sort of thing is being tackled in a truely free software project using only user supplied and licensed data and have a wiki containing stuff you might find interesting.

A few years back the guys involved where pretty easy going and answered lots of questions I had so I see no reason why they still aren't a nice bunch.

like image 134
sparkes Avatar answered Sep 23 '22 09:09

sparkes


A* is actually far closer to production mapping algorithms. It requires quite a bit less exploration compared to Dijikstra's original algorithm.

like image 30
Sargun Dhillon Avatar answered Sep 22 '22 09:09

Sargun Dhillon