flywave-terrain-datasource.serializedgroundmodificationpolygon.geoarea
Home > @flywave/flywave-terrain-datasource > SerializedGroundModificationPolygon > geoArea
SerializedGroundModificationPolygon.geoArea property
Geographical area definition in various formats
Can be a polygon, line string with width, bounding box, or array of points. The format varies depending on the type of geographic area being defined.
Signature:
geoArea: GeoPointLike[] | GeoBoxJSON | {
type: "Polygon";
coordinates: GeoPointLike[];
} | {
type: "LineString";
coordinates: GeoPointLike[];
width?: number;
};