]> err.no Git - mapper/blobdiff - src/poi.h
misc
[mapper] / src / poi.h
index dfa48b0cfa6bd676892d44386690fc5f5ff17e7a..a38b2adfa280a283c597643ee6606c8bbb846c92 100644 (file)
--- a/src/poi.h
+++ b/src/poi.h
@@ -29,14 +29,38 @@ create table poi (
 -- Shared categories for POIs and landmarks
 create table category (
        cat_id integer PRIMARY KEY,
+       pcat_id int,
        priority int,
-       label text, 
-       desc text, 
+       label text,
+       desc text,
        color char(6),
        icon varchar(32),
        enabled integer
 );
 
+Categories:
+Fuel
+       - Esso, Teboil, BP, Nest, etc
+Parking
+Residence
+Dining
+       - Restaurant
+Fast food
+Shopping/Services
+Recreation
+Transportation
+       - Bus
+       - Train
+       - Boat/Ferry
+       - Plane
+Lodging
+       - Hotell
+       - Motell
+School
+Business
+Landmark
+Other
+
 */
 
 #ifndef _MAPPER_POI_H