ltn/components/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
mod appwide_panel;
mod layers;
mod left_panel;

pub use appwide_panel::AppwidePanel;
pub use layers::{legend_entry, Layers};
pub use left_panel::{BottomPanel, LeftPanel};

#[derive(Clone, Copy, PartialEq)]
pub enum Mode {
    PickArea,
    FreehandBoundary,
    ModifyNeighbourhood,
    SelectBoundary,
    PerResidentImpact,
    RoutePlanner,
    Crossings,
    Impact,
    CycleNetwork,
    Census,
}