#[non_exhaustive]pub struct GeospatialMapConfiguration {
pub field_wells: Option<GeospatialMapFieldWells>,
pub legend: Option<LegendOptions>,
pub tooltip: Option<TooltipOptions>,
pub window_options: Option<GeospatialWindowOptions>,
pub map_style_options: Option<GeospatialMapStyleOptions>,
pub point_style_options: Option<GeospatialPointStyleOptions>,
pub visual_palette: Option<VisualPalette>,
}
Expand description
The configuration of a GeospatialMapVisual
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_wells: Option<GeospatialMapFieldWells>
The field wells of the visual.
legend: Option<LegendOptions>
The legend display setup of the visual.
tooltip: Option<TooltipOptions>
The tooltip display setup of the visual.
window_options: Option<GeospatialWindowOptions>
The window options of the geospatial map.
map_style_options: Option<GeospatialMapStyleOptions>
The map style options of the geospatial map.
point_style_options: Option<GeospatialPointStyleOptions>
The point style options of the geospatial map.
visual_palette: Option<VisualPalette>
The visual display options for the visual palette.
Implementations§
source§impl GeospatialMapConfiguration
impl GeospatialMapConfiguration
sourcepub fn field_wells(&self) -> Option<&GeospatialMapFieldWells>
pub fn field_wells(&self) -> Option<&GeospatialMapFieldWells>
The field wells of the visual.
sourcepub fn legend(&self) -> Option<&LegendOptions>
pub fn legend(&self) -> Option<&LegendOptions>
The legend display setup of the visual.
sourcepub fn tooltip(&self) -> Option<&TooltipOptions>
pub fn tooltip(&self) -> Option<&TooltipOptions>
The tooltip display setup of the visual.
sourcepub fn window_options(&self) -> Option<&GeospatialWindowOptions>
pub fn window_options(&self) -> Option<&GeospatialWindowOptions>
The window options of the geospatial map.
sourcepub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
pub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
The map style options of the geospatial map.
sourcepub fn point_style_options(&self) -> Option<&GeospatialPointStyleOptions>
pub fn point_style_options(&self) -> Option<&GeospatialPointStyleOptions>
The point style options of the geospatial map.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The visual display options for the visual palette.
source§impl GeospatialMapConfiguration
impl GeospatialMapConfiguration
sourcepub fn builder() -> GeospatialMapConfigurationBuilder
pub fn builder() -> GeospatialMapConfigurationBuilder
Creates a new builder-style object to manufacture GeospatialMapConfiguration
.
Trait Implementations§
source§impl Clone for GeospatialMapConfiguration
impl Clone for GeospatialMapConfiguration
source§fn clone(&self) -> GeospatialMapConfiguration
fn clone(&self) -> GeospatialMapConfiguration
Returns a copy of the value. Read more
1.0.0 · 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 GeospatialMapConfiguration
impl Debug for GeospatialMapConfiguration
source§impl PartialEq for GeospatialMapConfiguration
impl PartialEq for GeospatialMapConfiguration
source§fn eq(&self, other: &GeospatialMapConfiguration) -> bool
fn eq(&self, other: &GeospatialMapConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GeospatialMapConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for GeospatialMapConfiguration
impl Send for GeospatialMapConfiguration
impl Sync for GeospatialMapConfiguration
impl Unpin for GeospatialMapConfiguration
impl UnwindSafe for GeospatialMapConfiguration
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.