| Maptitude GISDK Help |
Deletes a point feature from a point layer.
deleted_id = DeletePoint(integer ID)
| Argument | Contents |
|---|---|
| ID | The ID of the point to delete |
The integer ID of the deleted point.
The point layer must be the current layer.
The point layer can be an Oracle Spatial layer.
// Delete a Store (point feature) where the user clicks
SetLayer("Stores")
id = RH2ID(LocateNearestRecord(ClickCoord(), 0.25))
DeletePoint(id)
| Error Type | Meaning |
|---|---|
| Error | The current layer is not a point layer, or is not from a standard geographic file |
| NotFound | There is no feature with the given ID |
| Function | Summary |
|---|---|
| AddPoint() | Adds a point feature to a point layer |
| ©2025 Caliper Corporation | www.caliper.com |