Skip to content

Toggle interactions

Enable or disable UI handlers on a map.

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Toggle interactions</title>
    <meta property="og:description" content="Enable or disable UI handlers on a map." />
    <meta charset='utf-8'>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel='stylesheet' href='https://unpkg.com/maplibre-gl@4.2.0/dist/maplibre-gl.css' />
    <script src='https://unpkg.com/maplibre-gl@4.2.0/dist/maplibre-gl.js'></script>
    <style>
        body { margin: 0; padding: 0; }
        html, body, #map { height: 100%; }
    </style>
</head>
<body>
<style>
    .listing-group {
        font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
        font-weight: 600;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
        border-radius: 3px;
        max-width: 20%;
        color: #fff;
    }

    .listing-group input[type='checkbox']:first-child + label {
        border-radius: 3px 3px 0 0;
    }

    .listing-group label:last-child {
        border-radius: 0 0 3px 3px;
        border: none;
    }

    .listing-group input[type='checkbox'] {
        display: none;
    }

    .listing-group input[type='checkbox'] + label {
        background-color: #3386c0;
        display: block;
        cursor: pointer;
        padding: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    }

    .listing-group input[type='checkbox'] + label {
        background-color: #3386c0;
        text-transform: capitalize;
    }

    .listing-group input[type='checkbox'] + label:hover,
    .listing-group input[type='checkbox']:checked + label {
        background-color: #4ea0da;
    }

    .listing-group input[type='checkbox']:checked + label:before {
        content: '✔';
        margin-right: 5px;
    }
</style>
<div id="map"></div>
<nav id="listing-group" class="listing-group">
    <input type="checkbox" id="scrollZoom" checked="checked" />
    <label for="scrollZoom">Scroll zoom</label>
    <input type="checkbox" id="boxZoom" checked="checked" />
    <label for="boxZoom">Box zoom</label>
    <input type="checkbox" id="dragRotate" checked="checked" />
    <label for="dragRotate">Drag rotate</label>
    <input type="checkbox" id="dragPan" checked="checked" />
    <label for="dragPan">Drag pan</label>
    <input type="checkbox" id="keyboard" checked="checked" />
    <label for="keyboard">Keyboard</label>
    <input type="checkbox" id="doubleClickZoom" checked="checked" />
    <label for="doubleClickZoom">Double click zoom</label>
    <input type="checkbox" id="touchZoomRotate" checked="checked" />
    <label for="touchZoomRotate">Touch zoom rotate</label>
</nav>

<script>
    const map = new maplibregl.Map({
        container: 'map',
        style:
            'https://api.maptiler.com/maps/streets/style.json?key=get_your_own_OpIi9ZULNHzrESv6T2vL',
        center: [-77.04, 38.907],
        zoom: 11.15
    });

    document
        .getElementById('listing-group')
        .addEventListener('change', (e) => {
            const handler = e.target.id;
            if (e.target.checked) {
                map[handler].enable();
            } else {
                map[handler].disable();
            }
        });
</script>
</body>
</html>