New renderer-agnostic package with zero dependencies: - Tile configs (base layers, overlay layers) - Color palettes (surface, highway, smoothness, tracktype, cycleway, bikeroute, elevation, maxspeed) — 8 color maps + 3 color functions - POI category definitions (9 categories with Overpass queries, icons, colors, profile mappings) - Z-index layering constants - Snap distance constant Updated 15 consuming files to import from @trails-cool/map-core. Deleted poi-categories.ts and z-index.ts from the Planner (fully moved). packages/map re-exports tile configs from map-core for backwards compat. All 117 tests pass, no user-facing changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
export interface PoiCategory {
|
|
id: string;
|
|
name: string;
|
|
icon: string;
|
|
color: string;
|
|
query: string;
|
|
profiles?: string[];
|
|
}
|
|
|
|
export const poiCategories: PoiCategory[] = [
|
|
{
|
|
id: "drinking_water",
|
|
name: "poi.drinkingWater",
|
|
icon: "\u{1F4A7}",
|
|
color: "#2563eb",
|
|
query: 'nwr["amenity"="drinking_water"];nwr["amenity"="water_point"];',
|
|
},
|
|
{
|
|
id: "shelter",
|
|
name: "poi.shelter",
|
|
icon: "\u{1F6D6}",
|
|
color: "#8B6D3A",
|
|
query: 'nwr["amenity"="shelter"];nwr["tourism"="wilderness_hut"];',
|
|
profiles: ["trekking"],
|
|
},
|
|
{
|
|
id: "camping",
|
|
name: "poi.camping",
|
|
icon: "\u26FA",
|
|
color: "#059669",
|
|
query: 'nwr["tourism"="camp_site"];nwr["tourism"="caravan_site"];',
|
|
},
|
|
{
|
|
id: "food",
|
|
name: "poi.food",
|
|
icon: "\u{1F37D}\uFE0F",
|
|
color: "#dc2626",
|
|
query: 'nwr["amenity"="restaurant"];nwr["amenity"="cafe"];nwr["amenity"="fast_food"];nwr["amenity"="pub"];nwr["amenity"="biergarten"];',
|
|
},
|
|
{
|
|
id: "groceries",
|
|
name: "poi.groceries",
|
|
icon: "\u{1F6D2}",
|
|
color: "#f97316",
|
|
query: 'nwr["shop"="supermarket"];nwr["shop"="convenience"];nwr["shop"="bakery"];',
|
|
},
|
|
{
|
|
id: "bike_infra",
|
|
name: "poi.bikeInfra",
|
|
icon: "\u{1F527}",
|
|
color: "#8b5cf6",
|
|
query: 'nwr["amenity"="bicycle_parking"];nwr["amenity"="bicycle_repair_station"];nwr["amenity"="bicycle_rental"];',
|
|
profiles: ["fastbike", "safety"],
|
|
},
|
|
{
|
|
id: "accommodation",
|
|
name: "poi.accommodation",
|
|
icon: "\u{1F3E8}",
|
|
color: "#0891b2",
|
|
query: 'nwr["tourism"="hotel"];nwr["tourism"="hostel"];nwr["tourism"="guest_house"];',
|
|
},
|
|
{
|
|
id: "viewpoints",
|
|
name: "poi.viewpoints",
|
|
icon: "\u{1F441}\uFE0F",
|
|
color: "#9333ea",
|
|
query: 'nwr["tourism"="viewpoint"];',
|
|
profiles: ["trekking"],
|
|
},
|
|
{
|
|
id: "toilets",
|
|
name: "poi.toilets",
|
|
icon: "\u{1F6BB}",
|
|
color: "#6b7280",
|
|
query: 'nwr["amenity"="toilets"];',
|
|
},
|
|
];
|
|
|
|
export function getCategoriesForProfile(profile: string): string[] {
|
|
return poiCategories
|
|
.filter((c) => c.profiles?.includes(profile))
|
|
.map((c) => c.id);
|
|
}
|
|
|
|
/** Profile -> tile overlay mapping */
|
|
export const profileOverlayDefaults: Record<string, string[]> = {
|
|
fastbike: ["waymarked-cycling"],
|
|
safety: ["waymarked-cycling"],
|
|
trekking: ["waymarked-hiking"],
|
|
};
|