Class: Aws::LocationService::Types::MapConfigurationUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::MapConfigurationUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Specifies the political view for the style.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_layers ⇒ Array<String>
Specifies the custom layers for the style.
-
#political_view ⇒ String
Specifies the political view for the style.
Instance Attribute Details
#custom_layers ⇒ Array<String>
Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style. Default is ‘unset`.
<note markdown=“1”> Not all map resources or styles support custom layers. See Custom Layers for more information.
</note>
5179 5180 5181 5182 5183 5184 |
# File 'lib/aws-sdk-locationservice/types.rb', line 5179 class MapConfigurationUpdate < Struct.new( :political_view, :custom_layers) SENSITIVE = [] include Aws::Structure end |
#political_view ⇒ String
Specifies the political view for the style. Set to an empty string to not use a political view, or, for styles that support specific political views, you can choose a view, such as ‘IND` for the Indian view.
<note markdown=“1”> Not all map resources or styles support political view styles. See
- Political views][1
-
for more information.
</note>
[1]: docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#political-views
5179 5180 5181 5182 5183 5184 |
# File 'lib/aws-sdk-locationservice/types.rb', line 5179 class MapConfigurationUpdate < Struct.new( :political_view, :custom_layers) SENSITIVE = [] include Aws::Structure end |