TileBasedPointClustererTAddPoint Method |
Adds a point to the clusterer.
Namespace:
Ptv.XServer.Controls.Map.Tools
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public void AddPoint(
double x,
double y,
double aggregate,
T tag
)
Public Sub AddPoint (
x As Double,
y As Double,
aggregate As Double,
tag As T
)
public:
void AddPoint(
double x,
double y,
double aggregate,
T tag
)
member AddPoint :
x : float *
y : float *
aggregate : float *
tag : 'T -> unit
Parameters
- x
- Type: SystemDouble
The x coordinate of the point. - y
- Type: SystemDouble
The y coordinate of the point. - aggregate
- Type: SystemDouble
A value to aggregate for the points. - tag
- Type: T
The item for the point.
See Also