Class CfnAnalysis.GeospatialCoordinateBoundsProperty
The bound options (north, south, west, east) of the geospatial window options.
Inheritance
System.Object
CfnAnalysis.GeospatialCoordinateBoundsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GeospatialCoordinateBoundsProperty : Object, CfnAnalysis.IGeospatialCoordinateBoundsProperty
Syntax (vb)
Public Class GeospatialCoordinateBoundsProperty
Inherits Object
Implements CfnAnalysis.IGeospatialCoordinateBoundsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var geospatialCoordinateBoundsProperty = new GeospatialCoordinateBoundsProperty {
East = 123,
North = 123,
South = 123,
West = 123
};
Synopsis
Constructors
GeospatialCoordinateBoundsProperty() |
Properties
East | The longitude of the east bound of the geospatial coordinate bounds. |
North | The latitude of the north bound of the geospatial coordinate bounds. |
South | The latitude of the south bound of the geospatial coordinate bounds. |
West | The longitude of the west bound of the geospatial coordinate bounds. |
Constructors
GeospatialCoordinateBoundsProperty()
public GeospatialCoordinateBoundsProperty()
Properties
East
The longitude of the east bound of the geospatial coordinate bounds.
public double East { get; set; }
Property Value
System.Double
Remarks
North
The latitude of the north bound of the geospatial coordinate bounds.
public double North { get; set; }
Property Value
System.Double
Remarks
South
The latitude of the south bound of the geospatial coordinate bounds.
public double South { get; set; }
Property Value
System.Double
Remarks
West
The longitude of the west bound of the geospatial coordinate bounds.
public double West { get; set; }
Property Value
System.Double