i'm newbie with this Leaflet Library I just Tried to export my own Tileset from a picture using photoshop script and i added it to my chart like this :
var map = L.map('map').setView([0, 0], 0);
L.tileLayer('maps/16x162/{z}/{x}/{y}.png', {
minZoom: 0,
maxZoom: 6,
continuousWorld: false,
noWrap: true,
}).addTo(map);
but now i want to add one more tileset into this map which locates in the left of current map , how can i do this ?