Interface HonuaFeature

A single feature with attribute values and optional geometry.

interface HonuaFeature {
    attributes: Record<string, unknown>;
    geometry?: null | Record<string, unknown> | EsriGeometry;
}

Properties

attributes: Record<string, unknown>
geometry?: null | Record<string, unknown> | EsriGeometry