interface GeospatialCoordinateBoundsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.GeospatialCoordinateBoundsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.GeospatialCoordinateBoundsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.GeospatialCoordinateBoundsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » GeospatialCoordinateBoundsProperty |
The bound options (north, south, west, east) of the geospatial window options.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const geospatialCoordinateBoundsProperty: quicksight.CfnTemplate.GeospatialCoordinateBoundsProperty = {
east: 123,
north: 123,
south: 123,
west: 123,
};
Properties
Name | Type | Description |
---|---|---|
east | number | The longitude of the east bound of the geospatial coordinate bounds. |
north | number | The latitude of the north bound of the geospatial coordinate bounds. |
south | number | The latitude of the south bound of the geospatial coordinate bounds. |
west | number | The longitude of the west bound of the geospatial coordinate bounds. |
east
Type:
number
The longitude of the east bound of the geospatial coordinate bounds.
north
Type:
number
The latitude of the north bound of the geospatial coordinate bounds.
south
Type:
number
The latitude of the south bound of the geospatial coordinate bounds.
west
Type:
number
The longitude of the west bound of the geospatial coordinate bounds.