Interface LayerTypeFactory
interface LayerTypeFactory { create( opts: Record<string, any>, ): Promise<{ instance: any }> | { instance: any }; esriType?: string;} Properties
Optional
esriType
esriType?: string
Methods
create
- create(
opts: Record<string, any>,
): Promise<{ instance: any }> | { instance: any } Parameters
- opts: Record<string, any>
Returns Promise<{ instance: any }> | { instance: any }
Factory for layer types.