#[repr(C)]pub struct MapViewport {
pub centre_lat_deg: f64,
pub centre_lon_deg: f64,
pub zoom: f32,
pub bearing_deg: f32,
pub pitch_deg: f32,
}Expand description
Centre + zoom + rotation state. The Leaflet shape
(map.setView([lat, lon], zoom)). bearing_deg + pitch_deg are
reserved for future 3D-camera work; most callers leave them at zero.
Fields§
§centre_lat_deg: f64§centre_lon_deg: f64§zoom: f32§bearing_deg: f32§pitch_deg: f32Trait Implementations§
Source§impl Clone for MapViewport
impl Clone for MapViewport
Source§fn clone(&self) -> MapViewport
fn clone(&self) -> MapViewport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MapViewport
impl Debug for MapViewport
Source§impl Default for MapViewport
impl Default for MapViewport
Source§impl PartialEq for MapViewport
impl PartialEq for MapViewport
Source§fn eq(&self, other: &MapViewport) -> bool
fn eq(&self, other: &MapViewport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MapViewport
impl StructuralPartialEq for MapViewport
Auto Trait Implementations§
impl Freeze for MapViewport
impl RefUnwindSafe for MapViewport
impl Send for MapViewport
impl Sync for MapViewport
impl Unpin for MapViewport
impl UnsafeUnpin for MapViewport
impl UnwindSafe for MapViewport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more