Measurements Methods
Contains API to manage rulers that help users measure distances and areas on a map.| Name | Description |
|---|---|
| CreateRuler(RulerType, IList<CoordPoint>, RulerAppearance) | Creates a ruler with the specified type and appearance settings to measure the distance or the area between coordinate points passed as the second parameter. |
| CreateRuler(RulerType, IList<CoordPoint>) | Creates a ruler of the specified type to measure the distance or area between coordinate points passed as the second parameter. |
| InsertPoint(MapRuler, CoordPoint, Int32) | Inserts a new point in the ruler. |
| RemovePoint(MapRuler, Int32) | Removes the point with the specified index. |
| RemoveRuler(MapRuler) | Removes the ruler passed as a parameter from the map. |
| RemoveRulers() | Removes all rulers from the map. |
| UpdatePoint(MapRuler, CoordPoint, Int32) | Changes the coordinates of the point with the specified index. |
See Also