A FullscreenControl
control contains a button for toggling the map in and out of fullscreen mode.
import React from 'react';
import MapGL, { FullscreenControl } from '@urbica/react-map-gl';
import 'mapbox-gl/dist/mapbox-gl.css';
<MapGL
style={{ width: '100%', height: '400px' }}
mapStyle='mapbox://styles/mapbox/light-v9'
accessToken={MAPBOX_ACCESS_TOKEN}
latitude={37.78}
longitude={-122.41}
zoom={11}
>
<FullscreenControl position='top-right' />
</MapGL>;