Skip to content

View a fullscreen map

Toggle between current view and fullscreen mode. Does not work on iPhones because a pseudo-fullscreen is used, and the code is embedded in an iframe, which prevents the map from scaling.

<!DOCTYPE html>
<html lang="en">
<head>
    <title>View a fullscreen map</title>
    <meta property="og:description" content="Toggle between current view and fullscreen mode. Does not work on iPhones because a pseudo-fullscreen is used, and the code is embedded in an iframe, which prevents the map from scaling." />
    <meta charset='utf-8'>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/trackasia-gl.css" />
    <script src="https://unpkg.com/[email protected]/dist/trackasia-gl.js"></script>
    <style>
        body { margin: 0; padding: 0; }
        html, body, #map { height: 100%; }
    </style>
</head>
<body>
    <div id="map"></div>

<script>
    const map = new trackasiagl.Map({
        container: 'map', // container id
        style: 'https://maps.track-asia.com/styles/v2/streets.json?key=public_key', //stylesheet location
        center: {"lat":10.762622,"lng":106.660172}, // starting position
        zoom: 13 // starting zoom
    });

    map.addControl(new trackasiagl.FullscreenControl());
</script>

</body>
</html>