[]
Represents a map layer containing lines, where each line connects two points on the map.
public class LinesLayer : LayerBase, ILegendItem
Name | Description |
---|---|
LinesLayer() | |
LinesLayer(Map) |
Name | Description |
---|---|
BaseName | Gets a one word description of the item type (e.g. "Layer"). Also used to automatically generate new items' names. |
Latitude1 | Gets or sets the name of a field specifying the latitude. Ignored if MapLocation is not empty. |
Latitude2 | Gets or sets the name of a field specifying the latitude. Ignored if MapLocation is not empty. |
LegendItemDashStyle | Gets the legend item graphic's dash style (for line item kind). |
LegendItemFillColor | Gets the legend item graphic's fill color. |
LegendItemKind | Gets the kind of a legend item. |
LegendItemStrokeColor | Gets legend item stroke color. |
LineStyle | Gets the default line style. Note: the set accessor is for serialization only, and should not be used directly. |
LineStyleExpr | Gets or sets an expression that should evaluate to an index or a name of a style in the LineStyles collection that will be used to draw the line. |
LineVisibleExpr | Gets or sets expression determining whether a line is visible. |
Longitude1 | Gets or sets the name of a field specifying the longitude. Ignored if MapLocation is not empty. |
Longitude2 | Gets or sets the name of a field specifying the longitude. Ignored if MapLocation is not empty. |
MapLocation1 | Gets or sets a string containing one or more semicolon-delimited fields which may be used to determine the location of an entity using an external service such as Google. Typically these would be the fields specifying the address, e.g. "Address;City;PostalCode;Country". |
MapLocation2 | Gets or sets a string containing one or more semicolon-delimited fields which may be used to determine the location of an entity using an external service such as Google. Typically these would be the fields specifying the address, e.g. "Address;City;PostalCode;Country". |
PointsLocationExpressions | Gets the list of lists of location expressions. The outer list corresponds to the point or points associated with each record of the layer - i.e. for a points layer, that list will contain one element, for lines - two etc. The inner list for each point is the collection of location expressions. E.g. it can be Country, City, Address. |
PointsLocations | Gets the List<LonLat<string>> of locations. |