PlotLayer.AddPlots Method
Adds a new batch of plots to the PlotLayer.
AddPlots(double\[\] plots, System.Int32 start, System.Int32 count, Crs crs, PlotSymbol symbol, System.Double opacity)
Adds a new batch of plots to the PlotLayer.Syntax
public System.UInt64 AddPlots (
double[] plots,
System.Int32 start,
System.Int32 count,
Crs crs,
PlotSymbol symbol,
System.Double opacity
)
Parameters
An array of coordinate values. Each two consecutive values define the X and Y coordinates of a plot, expressed in the coordinate reference system specified by crs.
Starting offset of the first coordinate pair in plots.
Number of coordinate pairs to read from plots.
The coordinate reference system of the plots.
The symbol to draw.
An extra opacity value applied when rendering the plots; 0.0 means transparent, 1.0 fully opaque.
Return Value
The batch identifier of the created batch.
Remarks
This method creates a new batch of plots with the specified visualization. The plots, start and count parameters specify the geographic coordinates of the plots. Note that start and count are specified in coordinate pairs, not in number of coordinate values. The coordinates will be copied internally, the plots array will not be accessed after this call.
The coordinate reference system of the plots is specified by the crs parameter; if this is different from the view coordinate reference system the coordinates will be automatically re-projected when needed. Avoid re-projecting the coordinates yourself in the application; it is more efficient to let the PlotLayer do this internally.
To add plots in a globe view, use AddPlots3D instead.
Platforms
Windows, Linux, Android