I am creating a map with *Leaflet" This detail, just created a map with Leaflet, made it circle-shaped I want to fully recognize the creators of this awesome tool and others creators of tiles ... I want the attribution to follow the circle shape.
Can somebody help me with my code shown below?
Div
***
<div id="carteJour"></div>
Style
/* style et forme de ma carte*/
#carteJour {
margin-top: 10%;
width: 700px;
height: 700px;
border-radius: 350px;
position: absolute;
z-index: 500;
text-align: center;
left: 50%;
top: 29%;
transform: translate(-50%, -50%);
border-style: dashed;
border-radius: 50%;}
Tile Layer link
L.tileLayer('https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png', {
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> — Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
subdomains: 'abcd',
minZoom: 1,
maxZoom: 23,
}).addTo(mymap);
Thanks lot for taking time.