Type Alias CategoryOptions<T>

CategoryOptions<T>: VcsObjectOptions & {
    classRegistryName?: keyof VcsApp;
    featureProperty?: keyof T;
    keyProperty?: keyof T;
    layerOptions?: VectorOptions;
    title?: string;
}

Type Parameters

Type declaration

  • OptionalclassRegistryName?: keyof VcsApp

    the class registry name on the current app to provide classes for this category. if provided, parseItems will deserialize using this class registry. See: getObjectFromClassRegistry.

  • OptionalfeatureProperty?: keyof T
  • OptionalkeyProperty?: keyof T
  • OptionallayerOptions?: VectorOptions
  • Optionaltitle?: string