GraffitiSuite Docs
Docs
Bounds
Loading document parsing libraries...
# Bounds Class ## Compatibility ### Framework API Version | 1.0 | 2.0 | | :---: | :---: | | True | True | ### Web | 32-Bit | 64-Bit | | :---: | :---: | | True | True | ## Methods | Name | Parameters | Return Type | Description | | --- | :---: | :---: | --- | | Constructor | northEast as GraffitiMap.Point <br> southWest as GraffitiMap.Point | (None) | Creates a new instance of the class. | | Attributes | Hidden | toJSON | | ## Properties | Name | Type | Default Value | Description | | --- | :---: | :---: | --- | | NorthEast | GraffitiMap.Point | Nil | Northeast corner global coordinates. | | SouthWest | GraffitiMap.Point | Nil | Southwest corner global coordinates. | ## Examples ### Sample Bounds ``` var rectNE as new GraffitiMap.Point( 36.120961, -82.141759 ) var rectSW as new GraffitiMap.Point( 36.520961, -82.541759 ) var rectBounds as new GraffitiMap.Bounds( rectNE, rectSW ) ```