Class: Aws::LocationService::Types::MapConfigurationUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb

Overview

Specifies the political view for the style.

Constant Summary collapse

SENSITIVE =
[:political_view]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_layersArray<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.

Not all map resources or styles support custom layers. See Custom Layers for more information.

Returns:

  • (Array<String>)


5359
5360
5361
5362
5363
5364
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5359

class MapConfigurationUpdate < Struct.new(
  :political_view,
  :custom_layers)
  SENSITIVE = [:political_view]
  include Aws::Structure
end

#political_viewString

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.

Not all map resources or styles support political view styles. See Political views for more information.

Returns:

  • (String)


5359
5360
5361
5362
5363
5364
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5359

class MapConfigurationUpdate < Struct.new(
  :political_view,
  :custom_layers)
  SENSITIVE = [:political_view]
  include Aws::Structure
end