Maps - acrotron-spezvuz/auralization-proto GitHub Wiki

LeafletJS here

LeafletJS chosen for simple and fast maps integration. It works without any additional library or framework.

Mapbox Tiles

Mapbox tiles chosen because they have free 50 000 views per month and few styles including gray one.

Important!

The Mapbox Access Token should be replaced by the owned one. Current accessToken will be deleted soon.
Project SPA, index.html:
// add mapbox tiles layer
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'Map data © ...',
maxZoom: 18,
id: 'mapbox.light',
accessToken: 'pk.eyJ1IjoiZG9jdG9yYmlzaG9wIiwiYSI6ImNqbzk3Z3R1MDAxankza3IwOG10NzN3ZmwifQ.MkLyzmCleiF2M3t9DpShhw' - replace it }).addTo(mymap);