Leaflet Customize Bike Speed

E-Bikes travel at a higher speed, and climb hills better
<!DOCTYPE html>
<html>
<head>
    <!--  Include targomo webfonts -->
    <link rel="stylesheet" href="https://releases.targomo.com/tgm-icons/webfont/tgm-icon.css">
    <!--  Include leaflet javascript and css -->
    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" >
    <script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet-src.js" crossorigin=""></script>
    <!--  Include targomo leaflet full build -->
    <script src="https://releases.targomo.com/leaflet/latest-full.min.js"></script>
    <!--  Include micro progress bar  -->
    <script src="https://www.targomo.com/developers/scripts/mipb.min.js"></script>
    <style>
        body, html, #map {
            margin: 0;
            width: 100%;
            height: 100%;
        }
        #map {
            z-index: 0;
        }
        .markers {
            position: fixed; top: 10px; right: 10px;
        }
        .marker-container {
            padding: 4px 6px;
            background-color: #fff;
            display: flex; align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid rgba(0,0,0,0.2);
            background-clip: padding-box;
            border-radius: 4px;
            margin-bottom: 6px;
        }
        .marker-container.active {
            background-color: yellow;
        }
    </style>
</head>
<body>
    <!--  where the map will live  -->
    <div id="map"></div>
    <!--  selector used to change the bike mode  -->
    <div class="markers">
        <div onclick="setMode('bike')" id="btn-bike" class="marker-container active" title="human-power">
            <span class="tgm-icon tgm-ux-mode-bike"></span>
        </div>
        <div onclick="setMode('ebike')" id="btn-ebike" class="marker-container" title="electric-assist">
            <span class="tgm-icon tgm-ux-mode-ebike"></span>
        </div>
    </div>
    <script>
        // define select elements
        const modeElems = document.querySelectorAll(".marker-container");
        // set the progress bar
        const pBar = new mipb({ fg: "#FF8319", style: { zIndex: 500 } });
        pBar.show();
        // create targomo client
        const client = new tgm.TargomoClient('westcentraleurope', '__targomo_key_here__');
        // define the basemap
        const tileLayer = new tgm.leaflet.TgmLeafletTileLayer(client, 'Light');
        // Coordinates to center the map
        const center = [45.1874, 5.7401];
        
        // define the map
        var map = L.map('map', {
            layers: [tileLayer],
            scrollWheelZoom: false
        }).setView(center, 12);
        
        // set the attribution
        const attributionText = '<a href="https://www.targomo.com/developers/resources/attribution/" target="_blank">&copy; Targomo</a>';
        map.attributionControl.addAttribution(attributionText);
        
        // define the polygon overlay
        const polygonOverlayLayer = new tgm.leaflet.TgmLeafletPolygonOverlay({ strokeWidth: 20 });
        polygonOverlayLayer.addTo(map);
        
        async function setMode(mode) {
            const selector = `btn-${mode}`;
            document.getElementsByClassName('active')[0].classList.remove('active');
            document.getElementById(selector).classList.add('active');
        
            pBar.show();
            // polygons time rings
            const travelTimes = [300, 600, 900, 1200, 1500, 1800];
        
            // polygon service options
            const options = {
                travelType: 'bike',
                travelEdgeWeights: travelTimes,
                maxEdgeWeight: 1800,
                edgeWeight: 'time',
                serializer: 'json'
            };
        
            // define the starting point
            const sources = [{
                id: 0, lat: center[0], lng: center[1],
                // "tm" are the travel mode settings
                tm: { bike: { 
                    // e-bike gets an average speed of 25km/h, regular bike gets 15km/h
                    speed: mode === 'ebike' ? 25 : 15, 
                    // e-bike is more efficient going up hills, so the uphill 
                    // penalty is less than a regular bike
                    uphill: mode === 'ebike' ? 10 : 20,
                    // e-bike doesn't make us descend faster - negative penalty maintained
                    downhill: -10 
                } }
            }];
        
            // Add markers for the sources on the map.
            sources.forEach(source => {
                L.marker([source.lat, source.lng]).addTo(map)
            });
        
            // get the polygons
            const polygons = await client.polygons.fetch(sources, options);
            // calculate bounding box for polygons
            const bounds = polygons.getMaxBounds();
            // add polygons to overlay
            polygonOverlayLayer.setData(polygons);
            // zoom to the polygon bounds
            map.fitBounds(new L.latLngBounds(bounds.northEast, bounds.southWest));
            pBar.hide();
        }
        
        setMode('bike');
    </script>
</body>
</html>
content_copy
Copied to clipboard