API 参考
    正在准备搜索索引...

    类型别名 Feature

    A feature object which contains a geometry and associated properties. https://tools.ietf.org/html/rfc7946#section-3.2

    type Feature = {
        bbox?: number[];
        geometry: Geometry;
        id?: string | number;
        properties: { [name: string]: any } | null;
        type: "Feature";
    }
    索引

    属性

    bbox?: number[]
    geometry: Geometry
    id?: string | number
    properties: { [name: string]: any } | null
    type: "Feature"