Interface HonuaTypedFeature<T>

A feature with a typed attribute schema. Use with HonuaFeatureLayer<T> to get autocompletion and type checking on attribute access.

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

Type Parameters

  • T = Record<string, unknown>

Properties

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