IThemesTool
geovisto-map / IThemesTool
Interface: IThemesTool\<TProps, TDefaults, TState, TConfig, TInitProps>
This interface provides the themes tool.
Author
Jiri Hynek
Extends
IMapTool
\<TProps
,TDefaults
,TState
,TConfig
,TInitProps
>
Type parameters
• TProps extends IThemesToolProps
= IThemesToolProps
• TDefaults extends IThemesToolDefaults
= IThemesToolDefaults
• TState extends IThemesToolState
= IThemesToolState
• TConfig extends IThemesToolConfig
= IThemesToolConfig
• TInitProps extends IMapToolInitProps
\<TConfig
> = IMapToolInitProps
\<TConfig
>
Methods
copy()
copy():
IThemesTool
\<IThemesToolProps
,IThemesToolDefaults
,IThemesToolState
\<IThemesToolProps
,IThemesToolDefaults
,IThemesToolConfig
>,IThemesToolConfig
,IMapToolInitProps
\<IThemesToolConfig
>>
It creates a copy of the uninitialized tool.
Returns
IThemesTool
\<IThemesToolProps
, IThemesToolDefaults
, IThemesToolState
\<IThemesToolProps
, IThemesToolDefaults
, IThemesToolConfig
>, IThemesToolConfig
, IMapToolInitProps
\<IThemesToolConfig
>>
Overrides
Source
tools/themes/model/types/tool/IThemesTool.ts:29
create()
create():
this
It creates a tool.
Returns
this
Inherited from
Source
model/types/tool/IMapTool.ts:47
getAPIGetter()
getAPIGetter():
undefined
|IMapToolAPIGetter
\<IMapToolAPI
>
It returns the tool API.
Returns
undefined
| IMapToolAPIGetter
\<IMapToolAPI
>
Inherited from
Source
model/types/tool/IMapTool.ts:32
getDefaults()
getDefaults():
TDefaults
It returns default values of the state properties.
Returns
TDefaults
Inherited from
Source
model/types/object/IMapObject.ts:27
getId()
getId():
string
Help function which returns the id of the object.
Returns
string
Inherited from
Source
model/types/object/IMapObject.ts:42
getMap()
getMap():
undefined
|IMap
\<IMapProps
,IMapDefaults
,IMapState
\<IMapProps
,IMapDefaults
,IMapConfig
>,IMapConfig
,IMapInitProps
\<IMapConfig
>>
Help function which returns map which uses this tool.
Returns
undefined
| IMap
\<IMapProps
, IMapDefaults
, IMapState
\<IMapProps
, IMapDefaults
, IMapConfig
>, IMapConfig
, IMapInitProps
\<IMapConfig
>>
Inherited from
Source
model/types/tool/IMapTool.ts:42
getProps()
getProps():
TProps
It returns the props given by the programmer.
Returns
TProps
Inherited from
Source
model/types/object/IMapObject.ts:22
getState()
getState():
TState
It returns the map object state.
Returns
TState
Inherited from
Source
model/types/object/IMapObject.ts:32
getType()
getType():
string
Help function which returns the type of the object.
Returns
string
Inherited from
Source
model/types/object/IMapObject.ts:37
initialize()
initialize(
initProps
):this
It initializes the state of the object. It processes the serialized config and sets further objects.
This cannot be done in the object constructor since the object can be created before the Geovisto map is created.
Parameters
• initProps: TInitProps
Returns
this
Inherited from
Source
model/types/object/IMapObject.ts:53
isEnabled()
isEnabled():
boolean
Help getter which returns enabled property of state.
Returns
boolean
Inherited from
Source
model/types/tool/IMapTool.ts:52
isSingleton()
isSingleton():
boolean
It returns a logical value whether the tool type is singleton.
Returns
boolean
Inherited from
Source
model/types/tool/IMapTool.ts:37
setEnabled()
setEnabled(
enabled
):void
Some tools might be dynamicaly enabled/disabled. This function is called externally when the tool is enabled/disabled.
Parameters
• enabled: boolean
Returns
void
Inherited from
Source
model/types/tool/IMapTool.ts:60
setTheme()
setTheme(
theme
):void
It updates the theme and notifies listeners.
Parameters
• theme: IMapTheme
Returns
void
Source
tools/themes/model/types/tool/IThemesTool.ts:36
switchEnabled()
switchEnabled():
void
Help function which switches the enabled state (enabled/disabled).
Returns
void