You need to select the type maps you want to view. Menu, Maps, and then select the type maps. You can also select the Manage Repositories option and see where the maps are being stored, and change the storage location if you want. I keep my maps on an SD card, because I need the storage space, since there isn't enough room in the onboard memory.
Hi GNUITE
I need your help.
I waited for the maps converter for a long time and I've started to write it by myself. But I have the trouble in gdbm usage. If I put zome data to gdbm in my PC, I don't see anything in the N800 and I dont see anything in the map base created by MM...
Just a simple code:
main()
{
db = gdbm_open("Google.db",0, GDBM_READER, 0644, NULL);
dkey=gdbm_firstkey(db);
while (dkey.dptr)
{
dcon=gdbm_fetch(db,dkey);
dkey=gdbm_nextkey(db,dkey);
}
gdbm_close(db);
}
This code get keys from the gdbm created by PC and found nothing in the gdbm from MM.
Way?
If it is the byte order cause, then we have no chance to make the PC converter!?
PC converter is usefull for some cases:
1. Building own maps
2. Downloading maps from pc
3. Converting maps from other software...
I think it's very very usefull.