Routing visualised in MapLibre

by Mapycz

HTML

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Routing visualised in MapLibre</title>
    <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="https://unpkg.com/[email protected]/dist/maplibre-gl.js"></script>
    <link href="https://unpkg.com/[email protected]/dist/maplibre-gl.css" rel="stylesheet" />
  </head>
  <body>
    <div id="map"></div>
  </body>
</html>

CSS

body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

JavaScript

// replace with your own API key
const API_KEY = 'eyJpIjoyNTcsImMiOjE2Njc0ODU2MjN9.c_UlvdpHGTI_Jb-TNMYlDYuIkCLJaUpi911RdlwPsAY';

/*
We create a map with initial coordinates zoom, a raster tile source, a layer using that source, a geojson source and a layer using that source
See https://maplibre.org/maplibre-gl-js-docs/example/map-tiles/
See https://maplibre.org/maplibre-gl-js-docs/style-spec/sources/#raster
See https://maplibre.org/maplibre-gl-js-docs/style-spec/layers/
*/
const map = new maplibregl.Map({
	container: 'map',
	center: [14.8981184, 49.8729317],
	zoom: 7,
	style: {
		version: 8,
		sources: {
    	// style for map tiles
			'basic-tiles': {
				type: 'raster',
				url: `https://api.mapy.com/v1/maptiles/basic/tiles.json?apikey=${API_KEY}`,
				tileSize: 256,
			},
      // style for our geometry
      'route-geometry': {
        type: 'geojson',
        data: {
          type: "LineString",
          coordinates: [],
        },
      },
		},
		layers: [{
			id: 'tiles',
			type: 'raster',
			source: 'basic-tiles',
		}, {
      id: 'route-geometry',
      type: 'line',
      source: 'route-geometry',
      layout: {
        'line-join': 'round',
        'line-cap': 'round',
      },
      paint: {
        'line-color': '#0033ff',
        'line-width': 8,
        'line-opacity': 0.6,
      },
    }],
	},
});

/*
We also require you to include our logo somewhere over the map.
We create our own map control implementing a documented interface,
that shows a clickable logo.
See https://maplibre.org/maplibre-gl-js-docs/api/markers/#icontrol
*/
class LogoControl {
	onAdd(map) {
		this._map = map;
		this._container = document.createElement('div');
		this._container.className = 'maplibregl-ctrl';
		this._container.innerHTML = '<a href="http://mapy.com/" target="_blank"><img  width="100px" src="https://api.mapy.com/img/api/logo.svg" ></a>';

		return this._container;
	}
 
	onRemove()...