GeoJSON Point 延伸結構,對應PilotGaea GeoPoint, Geo3DPoint 物件

interface Point {
    bbox?: BBox;
    coordinates: [x: number, y: number, z?: number];
    type: "Point Z" | "Point";
}

Hierarchy

Properties

bbox?: BBox

GeoJSON 物件邊界範圍

coordinates: [x: number, y: number, z?: number]

座標

type: "Point Z" | "Point"

GeoJSON 物件類型

Generated using TypeDoc