Interface RuntimePointerInteractionOptions

interface RuntimePointerInteractionOptions {
    event?: "click" | "dblclick" | "mousemove";
    featureIdProperty?: string;
    layers?: readonly string[];
    loadDetails?: boolean;
    maxResults?: number;
    queryTileSources?: Readonly<Record<string, QueryTileSourceDescriptor<Record<string, unknown>>>>;
    resolveFeatureContext?: ((feature: unknown) => undefined | HonuaRenderedFeatureContext);
    resolveFeatureId?: ((feature: unknown, context: HonuaRenderedFeatureContext) => undefined | FeatureId);
    signal?: AbortSignal;
    sourceIds?: readonly string[];
    sourceLayers?: readonly string[];
    tolerance?: number;
}

Hierarchy (view full)

Properties

event?: "click" | "dblclick" | "mousemove"
featureIdProperty?: string
layers?: readonly string[]
loadDetails?: boolean
maxResults?: number
queryTileSources?: Readonly<Record<string, QueryTileSourceDescriptor<Record<string, unknown>>>>
resolveFeatureContext?: ((feature: unknown) => undefined | HonuaRenderedFeatureContext)
resolveFeatureId?: ((feature: unknown, context: HonuaRenderedFeatureContext) => undefined | FeatureId)
signal?: AbortSignal
sourceIds?: readonly string[]
sourceLayers?: readonly string[]
tolerance?: number