Interface HonuaMapPackageAttribution

Package-level attribution the host is expected to display.

Per-binding attribution on HonuaMapPackageSourceBinding stays the source-of-record for a single service; this collection is for the package-wide notices (basemap credit, licence text) that no single binding owns.

interface HonuaMapPackageAttribution {
    required?: boolean;
    sourceIds?: readonly string[];
    text: string;
    url?: string;
}

Properties

required?: boolean

Whether the host must display this notice (licence obligation).

sourceIds?: readonly string[]

Bindings this notice covers. Omitted means package-wide.

text: string

Attribution text. Plain text; hosts escape before rendering.

url?: string

Optional link target for the attribution.