Method | Description | |
---|---|---|
Bbox ( float swlng, float swlat, float nelng, float nelat, string layerId ) : void |
Gets all and any points in a (bounding box) rectangle. Takes two lng/lat pairs as input. These MUST be the south-west (bottom left) and northeast (top right) coordinates expressed as floating point numbers.
|
|
BboxAsync ( float swlng, float swlat, float nelng, float nelat, string layerId ) : System.Threading.Tasks.Task |
Gets all and any points in a (bounding box) rectangle. Takes two lng/lat pairs as input. These MUST be the south-west (bottom left) and northeast (top right) coordinates expressed as floating point numbers.
|
|
GetBasePath ( ) : String |
Gets the base path of the API client.
|
|
Getsphere ( float lng, float lat, float distance, string layerId ) : void |
Gets all and any points in a sphere defined by its center coordinate. takes the center coordinate (Lat:lng) and distance (radius) as arguments to provide a list of coordinates starting with the closest coordinates to the center.
|
|
GetsphereAsync ( float lng, float lat, float distance, string layerId ) : System.Threading.Tasks.Task |
Gets all and any points in a sphere defined by its center coordinate. takes the center coordinate (Lat:lng) and distance (radius) as arguments to provide a list of coordinates starting with the closest coordinates to the center.
|
|
Getwithinpolygon ( |
Gets all and any points that are within a user-supplied polygon in a GeoJSON document. Takes a GeoJSON specification compliant document as input. This method can be used to determine the points within a special area, such as municipial borders.
|
|
GetwithinpolygonAsync ( |
Gets all and any points that are within a user-supplied polygon in a GeoJSON document. Takes a GeoJSON specification compliant document as input. This method can be used to determine the points within a special area, such as municipial borders.
|
|
SetBasePath ( String basePath ) : void |
Sets the base path of the API client.
|
|
SpecialApi ( |
Initializes a new instance of the SpecialApi class.
|
|
SpecialApi ( String basePath ) : System |
Initializes a new instance of the SpecialApi class.
|
public Bbox ( float swlng, float swlat, float nelng, float nelat, string layerId ) : void | ||
swlng | float | Southwestern longtitude used to calculate the bbox |
swlat | float | Southwestern latitude used to calculate the bbox |
nelng | float | Northeastern longtitude used to calculate the bbox |
nelat | float | Northeastern latitude used to calculate the bbox |
layerId | string | ID of the layer |
return | void |
public BboxAsync ( float swlng, float swlat, float nelng, float nelat, string layerId ) : System.Threading.Tasks.Task | ||
swlng | float | Southwestern longtitude used to calculate the bbox |
swlat | float | Southwestern latitude used to calculate the bbox |
nelng | float | Northeastern longtitude used to calculate the bbox |
nelat | float | Northeastern latitude used to calculate the bbox |
layerId | string | ID of the layer |
return | System.Threading.Tasks.Task |
public Getsphere ( float lng, float lat, float distance, string layerId ) : void | ||
lng | float | Longtitude used to calculate the sphere |
lat | float | Latitude used to calculate the sphere |
distance | float | Max distane in meters |
layerId | string | ID of the layer |
return | void |
public GetsphereAsync ( float lng, float lat, float distance, string layerId ) : System.Threading.Tasks.Task | ||
lng | float | Longtitude used to calculate the sphere |
lat | float | Latitude used to calculate the sphere |
distance | float | Max distane in meters |
layerId | string | ID of the layer |
return | System.Threading.Tasks.Task |
public Getwithinpolygon ( |
||
feature | JSON that will be used to query the layer | |
layerId | string | ID of the layer |
return | void |
public GetwithinpolygonAsync ( |
||
feature | JSON that will be used to query the layer | |
layerId | string | ID of the layer |
return | System.Threading.Tasks.Task |
public SetBasePath ( String basePath ) : void | ||
basePath | String | The base path |
return | void |
public SpecialApi ( |
||
apiClient | an instance of ApiClient (optional) | |
return | System |
public SpecialApi ( String basePath ) : System | ||
basePath | String | |
return | System |