A collection of sublayer extensions belonging to a mapping/MapNotesLayerExtension!MapNotesLayerExtension or a MapNotesSublayerExtension.

interface MapNotesSublayerExtensionCollection {
    initializedItems: ReadOnlyCollection<MapNotesSublayerExtension>;
    findById(id: string): MapNotesSublayerExtension;
    findBySublayerId(id: number): MapNotesSublayerExtension;
    forSublayer(sublayer: MapNotesSublayer): MapNotesSublayerExtension;
}

Hierarchy (view full)

Properties

Returns a collection of the initialized items.

Methods