Method | Description | |
---|---|---|
AddFeature ( string layerId, |
Adds a feature
|
|
AddFeatureAsync ( string layerId, |
Adds a feature
|
|
DeleteFeature ( string featureId, string layerId ) : void |
Delete a feature by ID Deletes an entire layer
|
|
DeleteFeatureAsync ( string featureId, string layerId ) : System.Threading.Tasks.Task |
Delete a feature by ID Deletes an entire layer
|
|
FeatureApi ( |
Initializes a new instance of the FeatureApi class.
|
|
FeatureApi ( string basePath ) : System |
Initializes a new instance of the FeatureApi class.
|
|
GetBasePath ( ) : string |
Gets the base path of the API client.
|
|
GetFeature ( string featureId, string layerId ) : |
Find feature by ID Returns a single feature
|
|
GetFeatureAsync ( string featureId, string layerId ) : System.Threading.Tasks.Task |
Find feature by ID Returns a single feature
|
|
SetBasePath ( string basePath ) : void |
Sets the base path of the API client.
|
|
UpdateFeature ( |
Update a single pre-existing feature
|
|
UpdateFeatureAsync ( |
Update a single pre-existing feature
|
public AddFeature ( string layerId, |
||
layerId | string | ID of layer to add the feature to |
body | JSON that will be used to insert the feature | |
return |
public AddFeatureAsync ( string layerId, |
||
layerId | string | ID of layer to add the feature to |
body | JSON that will be used to insert the feature | |
return | System.Threading.Tasks.Task |
public DeleteFeature ( string featureId, string layerId ) : void | ||
featureId | string | ID of feature to be deleted |
layerId | string | ID of the layer where the feature is located |
return | void |
public DeleteFeatureAsync ( string featureId, string layerId ) : System.Threading.Tasks.Task | ||
featureId | string | ID of feature to be deleted |
layerId | string | ID of the layer where the feature is located |
return | System.Threading.Tasks.Task |
public FeatureApi ( |
||
apiClient | an instance of ApiClient (optional) | |
return | System |
public FeatureApi ( string basePath ) : System | ||
basePath | string | |
return | System |
public GetFeature ( string featureId, string layerId ) : |
||
featureId | string | ID of the feature to be returned |
layerId | string | ID of the layer in which the feature is located |
return |
public GetFeatureAsync ( string featureId, string layerId ) : System.Threading.Tasks.Task |
||
featureId | string | ID of the feature to be returned |
layerId | string | ID of the layer in which the feature is located |
return | System.Threading.Tasks.Task |
public SetBasePath ( string basePath ) : void | ||
basePath | string | The base path |
return | void |
public UpdateFeature ( |
||
body | JSON that will be used to update the feature | |
layerId | string | ID or Name of the Layer to update |
featureId | string | ID of the feature to update |
return | void |
public UpdateFeatureAsync ( |
||
body | JSON that will be used to update the feature | |
layerId | string | ID or Name of the Layer to update |
featureId | string | ID of the feature to update |
return | System.Threading.Tasks.Task |