API / geotoolkit / scene / Node / Node
Type Aliases
Type Aliases
Ƭ EventMap: EventMap & { BoundsChanged: Rect ; Changed: void ; CssClassChanged: string[] | string ; Invalidate: InvalidateEventArgs ; NodeTreeChanged: Node | Iterator<Node> ; ParentChanged: void ; SceneTransformationChanged: void ; VisibilityChanged: void ; click: DOMEventArgs | any ; doubleclick: DOMEventArgs ; enter: DOMEventArgs ; hover: DOMEventArgs ; leave: DOMEventArgs ; mousedown: DOMEventArgs ; mouseup: DOMEventArgs }
Ƭ Options: Object
The Node options
| Name | Type | Description |
|---|---|---|
cssclass? | string | The css class name of this node |
dynamicproperties? | Record<string, any> | object with every dynamic property set (if has any) |
id? | string | number | null | id of the node, its a unique identifier |
name? | string | name of the node. It is often used for debugging purposes or to simplify queries |
selectable? | boolean | selectable node, a boolean to determine if selection should consider this node |
tag? | any | custom information associated with node. It is a user object which can be used by client code to store information or attach an application object to the shape |
visible? | boolean | visibility of the node, a boolean to determine if the node should be rendered or not |
z-index? | number | null | Define node z-index |
Ƭ OptionsOut: Options
An object containing the properties to set