Interface SpatialAggregationIndexModelMetadata

interface SpatialAggregationIndexModelMetadata {
    cellIdEncoding?:
        | "string"
        | "number"
        | "bigint"
        | "opaque";
    coverage?: SpatialAggregationIndexCoverageMetadata;
    description?: string;
    family?: string;
    hierarchy?: "flat" | "unknown" | "parent-child";
    id: string;
    maxResolution?: number;
    minResolution?: number;
    spatialReference?: HonuaSpatialReference;
    supportedGeometry?: readonly SpatialAggregationCellGeometry[];
    title?: string;
}

Properties

cellIdEncoding?:
    | "string"
    | "number"
    | "bigint"
    | "opaque"
description?: string
family?: string
hierarchy?: "flat" | "unknown" | "parent-child"
id: string

Opaque model id. Apps must not infer behavior from this string.

maxResolution?: number
minResolution?: number
spatialReference?: HonuaSpatialReference
supportedGeometry?: readonly SpatialAggregationCellGeometry[]
title?: string