Struct widgetry::tools::url::URLManager
source · pub struct URLManager;
Expand description
Utilities for reflecting the current map and viewport in the URL on the web. No effect on native.
Implementations§
source§impl URLManager
impl URLManager
sourcepub fn update_url_free_param(free_param: String)
pub fn update_url_free_param(free_param: String)
Modify the current URL to change the first free parameter in the HTTP GET params to the specified value, adding it if needed.
sourcepub fn update_url_param(key: String, value: String)
pub fn update_url_param(key: String, value: String)
Modify the current URL to change the first named parameter in the HTTP GET params to the specified value, adding it if needed.
sourcepub fn get_cam_param(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds) -> String
pub fn get_cam_param(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds) -> String
Get an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks) based on the current
viewport.
sourcepub fn update_url_cam(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds)
pub fn update_url_cam(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds)
Modify the current URL to set –cam to an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks) based on the current
viewport.
sourcepub fn change_camera(
ctx: &mut EventCtx<'_>,
raw: Option<&String>,
gps_bounds: &GPSBounds
) -> bool
pub fn change_camera( ctx: &mut EventCtx<'_>, raw: Option<&String>, gps_bounds: &GPSBounds ) -> bool
Parse an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks), changing the canvas
appropriately. Returns true upon success.
sourcefn parse_center_camera(raw: &str, gps_bounds: &GPSBounds) -> Option<(Pt2D, f64)>
fn parse_center_camera(raw: &str, gps_bounds: &GPSBounds) -> Option<(Pt2D, f64)>
Parse an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks), returning the map point to
center on and the camera zoom.
Auto Trait Implementations§
impl Freeze for URLManager
impl RefUnwindSafe for URLManager
impl Send for URLManager
impl Sync for URLManager
impl Unpin for URLManager
impl UnwindSafe for URLManager
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.