the control's options
Removes a previously registered event listener.
The event type to remove listeners for.
The listener function to remove.
Adds a listener to a specified event type.
The event type to add a listen for.
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.
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.
the Map this control will be added to
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.
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.
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.
The event type to listen for.
Optional
listener: ListenerThe function to be called when the event is fired the first time.
this
or a promise if a listener is not provided
Bubble all events fired by this instance of Evented to this parent instance of Evented.
Optional
parent: EventedOptional
data: any
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'scooperativeGestures
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
View a fullscreen map
Events
Event
fullscreenstart
of type Event will be fired when fullscreen mode has started.Event
fullscreenend
of type Event will be fired when fullscreen mode has ended.