pathfinding

"/home/yossef/notes/git/projects/inguide/modules/pathfinding.md"

path: inguide/modules/pathfinding.md

- **fileName**: pathfinding
- **Created on**: 2026-06-16 00:48:42

pathfinding

cs# pathfinding

Purpose: A* routing engine in the MapLibre web runtime — path computation, GPS tracking, multi-floor routing.

Architecture

Key Components

File Role
pathfinder.js A* impl with Haversine distance, MinHeap
pathfinder-graph.js Graph data structure, floor-indexed nodes, LRU snap cache
routing-controller.js Graph loading, route compute orchestration
navigation-controller.js GPS tracking, follow camera, rerouting
route-compute.js Portal engine route computation (preferred)
route-features.js Route → GeoJSON LineStrings + connectors
gps-tracking.js Live location → snap to route nodes
route.js Renders route on map + notifies Android bridge

Graph Data

Multi-Floor Routing

Related: ./webview.md, ../flows/route-data-flow.md

continue:[[]]
before:[[]]