Using custom map image tiles in LeafletJS?
You are looking for a TileLayer. In this TileLayer, you give the URL for the to-be-fetched images to leaflet with a template like this: http://{s}.somedomain.com/blabla/{z}/{x}/{y}.png When you are at the specified zoom, x and y level, Leaflet will automatically fetch the tiles on the URL you gave. Depending on the image you want to show, … Read more