interface GeospatialMapStateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GeospatialMapStateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_GeospatialMapStateProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GeospatialMapStateProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.GeospatialMapStateProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » GeospatialMapStateProperty |
The map state 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 geospatialMapStateProperty: quicksight.CfnAnalysis.GeospatialMapStateProperty = {
bounds: {
east: 123,
north: 123,
south: 123,
west: 123,
},
mapNavigation: 'mapNavigation',
};
Properties
| Name | Type | Description |
|---|---|---|
| bounds? | IResolvable | Geospatial | |
| map | string | Enables or disables map navigation for a map. |
bounds?
Type:
IResolvable | Geospatial
(optional)
mapNavigation?
Type:
string
(optional)
Enables or disables map navigation for a map.

.NET
Go
Java
Python
TypeScript