ltn/components/mod.rs
1mod appwide_panel;
2mod layers;
3mod left_panel;
4
5pub use appwide_panel::AppwidePanel;
6pub use layers::{legend_entry, Layers};
7pub use left_panel::{BottomPanel, LeftPanel};
8
9#[derive(Clone, Copy, PartialEq)]
10pub enum Mode {
11 PickArea,
12 FreehandBoundary,
13 ModifyNeighbourhood,
14 SelectBoundary,
15 PerResidentImpact,
16 RoutePlanner,
17 Crossings,
18 Impact,
19 CycleNetwork,
20 Census,
21}