tiles.ab.info

by Nikolay Petrov

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-beta.2.rc.2/leaflet.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-beta.2.rc.2/leaflet.css">
<div id="map"></div>

CSS

#map {
  height: 400px;
}

JavaScript

// center of the map
var center = [57.7828, 28.4271];

// Create the map
var map = L.map('map').setView(center, 14);

// Set up the OSM layer
L.tileLayer(
//https://tile.antiborschevik.info/antiborschevik_info_PROD/15/19646/10463.png
  //'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  'https://tiles.antiborschevik.info/2019/{z}/{x}/{y}.png', {
    maxZoom: 18
  }).addTo(map);

// add a marker in the given location
L.marker(center).addTo(map);