blob: d163b451034889ea167102e3a0b80e461e4e59e8 (
plain)
1
2
3
4
5
6
7
|
pub const MIN_ZOOM: f64 = 0.1;
pub const MAX_ZOOM: f64 = 2.0;
pub const ZOOM_STEP: f64 = 0.1;
pub const FILE_EXTENSION: &str = "wmap";
pub const MIME_TYPE: &str = "application/vnd.wmap";
pub const APP_NAME: &str = "Map";
|