#[non_exhaustive]pub struct GetStaticMapInputBuilder { /* private fields */ }Expand description
A builder for GetStaticMapInput.
Implementations§
Source§impl GetStaticMapInputBuilder
impl GetStaticMapInputBuilder
Sourcepub fn bounding_box(self, input: impl Into<String>) -> Self
pub fn bounding_box(self, input: impl Into<String>) -> Self
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn set_bounding_box(self, input: Option<String>) -> Self
pub fn set_bounding_box(self, input: Option<String>) -> Self
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn get_bounding_box(&self) -> &Option<String>
pub fn get_bounding_box(&self) -> &Option<String>
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn bounded_positions(self, input: impl Into<String>) -> Self
pub fn bounded_positions(self, input: impl Into<String>) -> Self
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn set_bounded_positions(self, input: Option<String>) -> Self
pub fn set_bounded_positions(self, input: Option<String>) -> Self
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn get_bounded_positions(&self) -> &Option<String>
pub fn get_bounded_positions(&self) -> &Option<String>
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn center(self, input: impl Into<String>) -> Self
pub fn center(self, input: impl Into<String>) -> Self
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom and or Radius
Example: 49.295,-123.108
Sourcepub fn set_center(self, input: Option<String>) -> Self
pub fn set_center(self, input: Option<String>) -> Self
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom and or Radius
Example: 49.295,-123.108
Sourcepub fn get_center(&self) -> &Option<String>
pub fn get_center(&self) -> &Option<String>
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom and or Radius
Example: 49.295,-123.108
Sourcepub fn compact_overlay(self, input: impl Into<String>) -> Self
pub fn compact_overlay(self, input: impl Into<String>) -> Self
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn set_compact_overlay(self, input: Option<String>) -> Self
pub fn set_compact_overlay(self, input: Option<String>) -> Self
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn get_compact_overlay(&self) -> &Option<String>
pub fn get_compact_overlay(&self) -> &Option<String>
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn geo_json_overlay(self, input: impl Into<String>) -> Self
pub fn geo_json_overlay(self, input: impl Into<String>) -> Self
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn set_geo_json_overlay(self, input: Option<String>) -> Self
pub fn set_geo_json_overlay(self, input: Option<String>) -> Self
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn get_geo_json_overlay(&self) -> &Option<String>
pub fn get_geo_json_overlay(&self) -> &Option<String>
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn height(self, input: i32) -> Self
pub fn height(self, input: i32) -> Self
Specifies the height of the map image.
This field is required.Sourcepub fn set_height(self, input: Option<i32>) -> Self
pub fn set_height(self, input: Option<i32>) -> Self
Specifies the height of the map image.
Sourcepub fn get_height(&self) -> &Option<i32>
pub fn get_height(&self) -> &Option<i32>
Specifies the height of the map image.
Sourcepub fn key(self, input: impl Into<String>) -> Self
pub fn key(self, input: impl Into<String>) -> Self
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn set_key(self, input: Option<String>) -> Self
pub fn set_key(self, input: Option<String>) -> Self
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn get_key(&self) -> &Option<String>
pub fn get_key(&self) -> &Option<String>
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn padding(self, input: i32) -> Self
pub fn padding(self, input: i32) -> Self
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn set_padding(self, input: Option<i32>) -> Self
pub fn set_padding(self, input: Option<i32>) -> Self
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn get_padding(&self) -> &Option<i32>
pub fn get_padding(&self) -> &Option<i32>
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn radius(self, input: i64) -> Self
pub fn radius(self, input: i64) -> Self
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1.
Example: 1500
Cannot be used with Zoom.
Unit: Meters
Sourcepub fn set_radius(self, input: Option<i64>) -> Self
pub fn set_radius(self, input: Option<i64>) -> Self
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1.
Example: 1500
Cannot be used with Zoom.
Unit: Meters
Sourcepub fn get_radius(&self) -> &Option<i64>
pub fn get_radius(&self) -> &Option<i64>
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1.
Example: 1500
Cannot be used with Zoom.
Unit: Meters
Sourcepub fn file_name(self, input: impl Into<String>) -> Self
pub fn file_name(self, input: impl Into<String>) -> Self
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$.
Example: map, map@2x
Sourcepub fn set_file_name(self, input: Option<String>) -> Self
pub fn set_file_name(self, input: Option<String>) -> Self
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$.
Example: map, map@2x
Sourcepub fn get_file_name(&self) -> &Option<String>
pub fn get_file_name(&self) -> &Option<String>
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$.
Example: map, map@2x
Sourcepub fn scale_bar_unit(self, input: ScaleBarUnit) -> Self
pub fn scale_bar_unit(self, input: ScaleBarUnit) -> Self
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn set_scale_bar_unit(self, input: Option<ScaleBarUnit>) -> Self
pub fn set_scale_bar_unit(self, input: Option<ScaleBarUnit>) -> Self
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn get_scale_bar_unit(&self) -> &Option<ScaleBarUnit>
pub fn get_scale_bar_unit(&self) -> &Option<ScaleBarUnit>
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn style(self, input: StaticMapStyle) -> Self
pub fn style(self, input: StaticMapStyle) -> Self
Style specifies the desired map style for the Style APIs.
Sourcepub fn set_style(self, input: Option<StaticMapStyle>) -> Self
pub fn set_style(self, input: Option<StaticMapStyle>) -> Self
Style specifies the desired map style for the Style APIs.
Sourcepub fn get_style(&self) -> &Option<StaticMapStyle>
pub fn get_style(&self) -> &Option<StaticMapStyle>
Style specifies the desired map style for the Style APIs.
Sourcepub fn width(self, input: i32) -> Self
pub fn width(self, input: i32) -> Self
Specifies the width of the map image.
This field is required.Sourcepub fn zoom(self, input: f32) -> Self
pub fn zoom(self, input: f32) -> Self
Specifies the zoom level of the map image.
Cannot be used with Radius.
Sourcepub fn set_zoom(self, input: Option<f32>) -> Self
pub fn set_zoom(self, input: Option<f32>) -> Self
Specifies the zoom level of the map image.
Cannot be used with Radius.
Sourcepub fn get_zoom(&self) -> &Option<f32>
pub fn get_zoom(&self) -> &Option<f32>
Specifies the zoom level of the map image.
Cannot be used with Radius.
Sourcepub fn build(self) -> Result<GetStaticMapInput, BuildError>
pub fn build(self) -> Result<GetStaticMapInput, BuildError>
Consumes the builder and constructs a GetStaticMapInput.
Source§impl GetStaticMapInputBuilder
impl GetStaticMapInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetStaticMapOutput, SdkError<GetStaticMapError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetStaticMapOutput, SdkError<GetStaticMapError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for GetStaticMapInputBuilder
impl Clone for GetStaticMapInputBuilder
Source§fn clone(&self) -> GetStaticMapInputBuilder
fn clone(&self) -> GetStaticMapInputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for GetStaticMapInputBuilder
impl Debug for GetStaticMapInputBuilder
Source§impl Default for GetStaticMapInputBuilder
impl Default for GetStaticMapInputBuilder
Source§fn default() -> GetStaticMapInputBuilder
fn default() -> GetStaticMapInputBuilder
Source§impl PartialEq for GetStaticMapInputBuilder
impl PartialEq for GetStaticMapInputBuilder
impl StructuralPartialEq for GetStaticMapInputBuilder
Auto Trait Implementations§
impl Freeze for GetStaticMapInputBuilder
impl RefUnwindSafe for GetStaticMapInputBuilder
impl Send for GetStaticMapInputBuilder
impl Sync for GetStaticMapInputBuilder
impl Unpin for GetStaticMapInputBuilder
impl UnwindSafe for GetStaticMapInputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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>
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 moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Returns self with the
fg()
set to
Color::BrightBlack.
§Example
println!("{}", value.bright_black());Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Returns self with the
fg()
set to
Color::BrightGreen.
§Example
println!("{}", value.bright_green());Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Returns self with the
fg()
set to
Color::BrightYellow.
§Example
println!("{}", value.bright_yellow());Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Returns self with the
fg()
set to
Color::BrightMagenta.
§Example
println!("{}", value.bright_magenta());Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Returns self with the
fg()
set to
Color::BrightWhite.
§Example
println!("{}", value.bright_white());Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightBlack.
§Example
println!("{}", value.on_bright_black());Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightGreen.
§Example
println!("{}", value.on_bright_green());Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightYellow.
§Example
println!("{}", value.on_bright_yellow());Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightBlue.
§Example
println!("{}", value.on_bright_blue());Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightMagenta.
§Example
println!("{}", value.on_bright_magenta());Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightCyan.
§Example
println!("{}", value.on_bright_cyan());Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Returns self with the
bg()
set to
Color::BrightWhite.
§Example
println!("{}", value.on_bright_white());Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn underline(&self) -> Painted<&T>
fn underline(&self) -> Painted<&T>
Returns self with the
attr()
set to
Attribute::Underline.
§Example
println!("{}", value.underline());Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Returns self with the
attr()
set to
Attribute::RapidBlink.
§Example
println!("{}", value.rapid_blink());Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);