interface GeospatialMapStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.GeospatialMapStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_GeospatialMapStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.GeospatialMapStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.GeospatialMapStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » GeospatialMapStyleProperty |
The map style properties for a map.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const geospatialMapStyleProperty: quicksight_mixins.CfnDashboardPropsMixin.GeospatialMapStyleProperty = {
backgroundColor: 'backgroundColor',
baseMapStyle: 'baseMapStyle',
baseMapVisibility: 'baseMapVisibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| background | string | The background color and opacity values for a map. |
| base | string | The selected base map style. |
| base | string | The state of visibility for the base map. |
backgroundColor?
Type:
string
(optional)
The background color and opacity values for a map.
baseMapStyle?
Type:
string
(optional)
The selected base map style.
baseMapVisibility?
Type:
string
(optional)
The state of visibility for the base map.

.NET
Go
Java
Python
TypeScript