I just started researching Leaflet but could not find out how to make sure that I only see one single county. The rest of it should not be there. Also place names, the country name and streets should be gone. Here is an example of what I have in mind:
This is my code right now:
var map = L.map('Map', {
center: [52.048781, 5.877658],
zoom: 8,
zoomControl: false,
attributionControl: false,
touchZoom: false,
dragging: false,
scrollWheelZoom: false,
doubleClickZoom: false
});
//Standard tileLayer (from leaflet tutorial).
L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', {
attribution: 'Map data © <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
maxZoom: 18,
id: 'mapbox/streets-v11',
tileSize: 512,
zoomOffset: -1,
accessToken: '...'
}).addTo(map);
To be clear my leaflet map does not need to look exactly the same way as my first image but I do want it to have this low detail :D