Maemo
Contents
General instructions
- Install Navit. There's a Maemo project which provides some (currently rather dated) binaries. Alternatively, there are some "bleeding edge" binaries available in the download section.
- Get maps. It is possible to use Garmin maps, but maps of openstreetmap, a wiki like world map, also should do a good job. There are several sources where you can download Navit maps based on openstreetmap data. Save them anywhere on your device, e.g. somewhere on the flash memory.
- Configure Navit. Search for the file navit.xml as superuser root. Replace the path to the map file to fit your device and configuration:
- <mapset enabled="yes">
- <map type="binfile" enabled="yes" data="/media/mmc2/map/planet.bin"/>
- </mapset>
Developers may need to compile the source within the scratchbox environment, which currently (2008-12-20) will not compile out of the box. You need to have Scratchbox and the Nokia SDK installed. Place the source inside the scratchbox environment, log in to scratchbox, cd to the source directory and execute the following commands:
./autogen.sh ./configure --disable-binding-python --disable-gui-sdl --disable-samplemap --enable-avoid-float --enable-avoid-unaligned make make install
Others have used slightly different options for configure:
- ./configure --prefix=/home/user/navit --disable-garmin --disable-samplemap --disable-hildon --disable-binding-python --disable-graphics-sdl --disable-gui-sdl --disable-postgresql --disable-svg2png
- ./configure -q -enable-hildon -disable-binding-python -disable-gui-sdl -disable-samplemap -enable-avoid-float -enable-avoid-unaligned -prefix=/usr
BTW: The Hildon support seems not to be that perfect yet.
Configuration options
- Navit offers several GUIs. If you are not pleased with the GTK GUI, maybe you want to use the "internal" GUI.
- It is possible to make Navit recording and displaying a track. First let Navit record the track in the vehicle section, then add the resulting file to the mapset section:
- <log type="textfile" data="/home/user/.navit/tracks/ActiveLog.txt" flush_size="1000" overwrite="30" />
- ...
- <map type="textfile" enabled="yes" data="/home/user/.navit/tracks/ActiveLog.txt"/>
If everything went fine, Navit can be started from the menu and you should see the map on the display. In the upper panel of the tablet, you should see a satellite icon with a green tail, indicating that your device has a GPS fix. If so, Navit should show your current position on the map.
Starting GPSd manually
Navit does not necessarily start the GPS subsystem (driver and gpsd) on the Tablet. Therefore you need to do this by starting another application (Map, Gpxview) which is capable of starting it. This "helper application" needs to run as long as you want to use Navit.
Starting GPSd automatically
Some additional details (Nov 28, 2008): I spent an evening getting Navit working on my N800, here are what else you need to do on Diablo with a Bluetooth GPS
- Install bluez-utils-test, have to get this from a Chinook repository for now
- Follow the instructions here [1]
- Change your navit.xml vehicle definition to use file:/dev/rfcomm0 instead of gpsd
Now each time you start Navit, the GPS connection gets made for you. This avoids workarounds such as starting Map or gpsview. --Gerritv 14:13, 29 November 2008 (CET)
Notes
- The navit project now has a project page on the maemo garage site, https://garage.maemo.org/projects/navit/.
- The first binary version of navit for the Internet Tablets was created on another site, http://www.tecdencia.net/navit/.