<html> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.css" type="text/css" crossorigin=""> <script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.js" crossorigin=""></script> <style> #mapid { width: 512px; height: 512px; border: 1px solid #ccc; } .leaflet-container { background: #fff; } </style> <script type="text/javascript"> function init() { // create map and set center and zoom level var map = new L.map('mapid'); map.setView([47.000,-120.554],13); var mapboxTileUrl = 'PASTE YOUR URL INSIDE THESE SINGLE QUOTES'; L.tileLayer(mapboxTileUrl, { attribution: 'Background map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors' }).addTo(map); } </script> </html>