Use the places
parameter of Esri Leaflet Vector to display places of interest on an ArcGI
basemap layer. A list of supported basemap enumerations can be found in the basemap styles service REST API documentation.
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>Esri Leaflet Vector: Display basemap places</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" crossorigin="" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" crossorigin=""></script>
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/esri-leaflet@3.0.12/dist/esri-leaflet.js"></script>
<!-- Load Esri Leaflet Vector from CDN -->
<script src="https://unpkg.com/esri-leaflet-vector@4.2.5/dist/esri-leaflet-vector.js" crossorigin=""></script>
<style>
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #323232;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
const map = L.map("map", {
minZoom: 2
}).setView([34.101, -118.339], 17);
const accessToken = "YOUR_ACCESS_TOKEN";
const basemapStyle = "arcgis/navigation";
const getLayer = places => {
return L.esri.Vector.vectorBasemapLayer(basemapStyle, {
token: accessToken,
version: 2,
places:places
})
}
const placeOptions = {
"all":getLayer("all").addTo(map), // Show all places
"attributed":getLayer("attributed"), // Show places with attributes
"none":getLayer("none") // Hide all places
};
L.control.layers(placeOptions, null, { collapsed: false }).addTo(map);
</script>
</body>
</html>