FullscreenControl
Defined in: ui/control/fullscreen_control.ts:76
A FullscreenControl control contains a button for toggling the map in and out of fullscreen mode.
When requestFullscreen is not supported, fullscreen is handled via CSS properties.
The map's cooperativeGestures option is temporarily disabled while the map
is in fullscreen mode, and is restored when the map exist fullscreen mode.
Param
options
the full screen control options
Example
See
Events
Event fullscreenstart of type FullscreenEvent will be fired when fullscreen mode has started.
Event fullscreenend of type FullscreenEvent will be fired when fullscreen mode has ended.
Extends
Implements
Constructors
Constructor
new FullscreenControl(
options?:FullscreenControlOptions):FullscreenControl
Defined in: ui/control/fullscreen_control.ts:89
Parameters
| Parameter | Type | Description |
|---|---|---|
options |
FullscreenControlOptions |
the control's options |
Returns
FullscreenControl
Overrides
Evented<FullscreenControlEventType>.constructor
Methods
listens()
listens(
type:string):boolean
Defined in: util/evented.ts:180
Returns a true if this instance of Evented or any forwardeed instances of Evented have a listener for the specified type.
Parameters
| Parameter | Type | Description |
|---|---|---|
type |
string |
The event type |
Returns
boolean
true if there is at least one registered listener for specified event type, false otherwise
Inherited from
off()
off<
T>(type:T,listener: (event:FullscreenControlEventType[T]) =>void):this
Defined in: util/evented.ts:95
Removes a previously registered event listener.
Type Parameters
| Type Parameter |
|---|
T extends keyof FullscreenControlEventType |
Parameters
| Parameter | Type | Description |
|---|---|---|
type |
T |
The event type to remove listeners for. |
listener |
(event: FullscreenControlEventType[T]) => void |
The listener function to remove. |
Returns
this
Inherited from
on()
on<
T>(type:T,listener: (event:FullscreenControlEventType[T]) =>void):Subscription
Defined in: util/evented.ts:78
Adds a listener to a specified event type.
Type Parameters
| Type Parameter |
|---|
T extends keyof FullscreenControlEventType |
Parameters
| Parameter | Type | Description |
|---|---|---|
type |
T |
The event type to add a listen for. |
listener |
(event: FullscreenControlEventType[T]) => void |
The function to be called when the event is fired. The listener function is called with the data object passed to fire, extended with target and type properties. |
Returns
Inherited from
onAdd()
onAdd(
map:Map):HTMLElement
Defined in: ui/control/fullscreen_control.ts:114
Register a control on the map and give it a chance to register event listeners and resources. This method is called by Map.addControl internally.
Parameters
| Parameter | Type | Description |
|---|---|---|
map |
Map |
the Map this control will be added to |
Returns
HTMLElement
The control's container element. This should be created by the control and returned by onAdd without being attached to the DOM: the map will insert the control's element into the DOM as necessary.
Implementation of
once()
Call Signature
once<
T>(type:T):Promise<FullscreenControlEventType[T]>
Defined in: util/evented.ts:110
Adds a listener that will be called only once to a specified event type.
The listener will be called first time the event fires after the listener is registered.
Type Parameters
| Type Parameter |
|---|
T extends keyof FullscreenControlEventType |
Parameters
| Parameter | Type | Description |
|---|---|---|
type |
T |
The event type to listen for. |
Returns
Promise<FullscreenControlEventType[T]>
a promise that resolves with the event
Inherited from
Call Signature
once<
T>(type:T,listener: (event:FullscreenControlEventType[T]) =>void):this
Defined in: util/evented.ts:120
Adds a listener that will be called only once to a specified event type.
The listener will be called first time the event fires after the listener is registered.
Type Parameters
| Type Parameter |
|---|
T extends keyof FullscreenControlEventType |
Parameters
| Parameter | Type | Description |
|---|---|---|
type |
T |
The event type to listen for. |
listener |
(event: FullscreenControlEventType[T]) => void |
The function to be called when the event is fired the first time. |
Returns
this
this when a listener is provided
Inherited from
onRemove()
onRemove():
void
Defined in: ui/control/fullscreen_control.ts:123
Unregister a control on the map and give it a chance to detach event listeners and resources. This method is called by Map.removeControl internally.
Returns
void
Implementation of
setEventedParent()
setEventedParent(
parent?:Evented<Record<string,any>>,data?:any):this
Defined in: util/evented.ts:191
Bubble all events fired by this instance of Evented to this parent instance of Evented.
Parameters
| Parameter | Type |
|---|---|
parent? |
Evented<Record<string, any>> |
data? |
any |
Returns
this