.. Copyright (c) 2018, Johan Mabille, Sylvain Corlay, Wolf Vollprecht and Martin Renou Distributed under the terms of the BSD 3-Clause License. The full license is in the file LICENSE, distributed with this software. .. raw:: html :file: embed_widgets/fullscreen_control.html Fullscreen Control ================== The ``fullscreen_control`` allows one to display a selector on the top left of the map in order to display the map in fullscreen. .. code:: #include "xleaflet/xmap.hpp" #include "xleaflet/xfullscreen_control.hpp" auto map = xlf::map::initialize() .center({51.64, -76.52}) .zoom(5) .finalize(); map.add_control(xlf::fullscreen_control()); map .. raw:: html