interface IAreaFeature
(Niantic.Lightship.Maps.Core.Features.IAreaFeature)
Overview
AreaFeature is a maptile feature that describes a two-dimensional area (eg, a park or body of water).
interface IAreaFeature: Niantic.Lightship.Maps.Core.Features.IMapTileFeature {
// properties
Vector3[] Points;
int[] Indices;
LineSegment[] ExteriorEdges;
};
Inherited Members
public:
// properties
FeatureKind Kind;
LayerKind Layer;
ILabelInfo Label;
Detailed Documentation
AreaFeature is a maptile feature that describes a two-dimensional area (eg, a park or body of water).
Properties
Points
Vector3[] Points
All points in this mesh in no specific order.
Indices
int[] Indices
An array of stride three representing triangles. Each entry is an index into the Points array.
ExteriorEdges
LineSegment[] ExteriorEdges
An array of LineSegments that define the area's border.