pub enum CommonCrs {
Wgs84,
WebMercator,
Utm {
zone: u8,
north: bool,
},
}Expand description
Common coordinate reference systems
Variants§
Wgs84
WGS84 geographic coordinates (latitude/longitude)
WebMercator
Web Mercator (used by Google Maps, OpenStreetMap)
Utm
UTM Zone (specify zone number and hemisphere)
Implementations§
Trait Implementations§
impl Copy for CommonCrs
impl Eq for CommonCrs
impl StructuralPartialEq for CommonCrs
Auto Trait Implementations§
impl Freeze for CommonCrs
impl RefUnwindSafe for CommonCrs
impl Send for CommonCrs
impl Sync for CommonCrs
impl Unpin for CommonCrs
impl UnsafeUnpin for CommonCrs
impl UnwindSafe for CommonCrs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more