interface GeospatialMapStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GeospatialMapStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_GeospatialMapStyleProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GeospatialMapStyleProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.GeospatialMapStyleProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const geospatialMapStyleProperty: quicksight.CfnAnalysis.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