Esri vector basemap and vector tile layer plugin for Leaflet.
npm install esri-leaflet-vector[![npm version][npm-img]][npm-url]

[npm-img]: https://img.shields.io/npm/v/esri-leaflet-vector.svg?style=flat-square
[npm-url]: https://www.npmjs.com/package/esri-leaflet-vector
> A plugin for Esri Leaflet to visualize Vector tiles from ArcGIS Online.
Take a look at the live demo.
``html
`
For rendering basemap layers which use the Esri Basemap Styles API internally. Extends L.Layer.
`javascriptapikey
// example using an Esri Basemap Styles API name
L.esri.Vector.vectorBasemapLayer("ArcGIS:Streets", {
// provide either or token`
apikey: "...",
token: "...",
}).addTo(map);
`javascriptapikey
// example using an ITEM_ID
L.esri.Vector.vectorBasemapLayer("ITEM_ID", {
// provide either or token`
apikey: "...",
token: "...",
}).addTo(map);
#### Basemap Names
Please see the documentation for a list of basemap names you can use (ArcGIS:Streets, ArcGIS:DarkGray, ArcGIS:Imagery:Standard, OSM:Standard, etc).
For custom vector tiles layers published from user data. Extends L.Layer.
:warning: This only supports services using the Web Mercator projection because it relies directly upon maplibre-gl-js. Otherwise, the layer is not guaranteed to display properly. More information is available at Maplibre custom coordinate system.
`javascriptapikey
// example using an ITEM_ID
L.esri.Vector.vectorTileLayer("ITEM_ID", {
// optional: provide either or token if not public
apikey: "...",
token: "...",
// optional: if your layer is not hosted on ArcGIS Online,
// change portalUrl to the ArcGIS Enterprise base url
// (this is necessary when specifying an ITEM_ID)
portalUrl: "https://www.arcgis.com", // default value
// optional: customize the style with a function that gets the default style from the service
// and returns the new style to be used
style: (style) => {
return newStyle;
},
}).addTo(map);
`
`javascriptapikey
// example using a VectorTileServer SERVICE_URL
L.esri.Vector.vectorTileLayer("SERVICE_URL", {
// optional: provide either or token if not public
apikey: "...",
token: "...",
// optional: if your layer is not hosted on ArcGIS Online,
// change portalUrl to the ArcGIS Enterprise base url
// (this may not be necessary when specifying a SERVICE_URL)
portalUrl: "https://www.arcgis.com", // default value
// optional: set by default to false for performance reasonstrue
// set to to resolve WebGL printing issues in Firefox
preserveDrawingBuffer: false, // default value
// optional: customize the style with a function that gets the default style from the service
// and returns the new style to be used
style: (style) => {
return newStyle;
},
}).addTo(map);
`
1. Fork and clone this repo.
2. cd into the esri-leaflet-vector folder.npm install
3. Install the dependencies with .npm run dev
4. Run to compile the raw source inside a newly created dist folder and start up a development web server.npm run start
- Alternatively, run to compile raw source code into both "debug" and "production" versions. This process will take longer to compile when saving your local changes to source code. Recommended only when building for production.examples/quickstart-dev.html
5. Open to see local changes in action.
1. Fork and clone this repo.
2. cd into the esri-leaflet-vector folder.npm install
3. Install the dependencies with .npm run build
4. Run to compile the raw source inside a newly created dist folder.npm test
5. Run from the command line to execute tests.examples/quickstart-dev.html
6. Open or examples/quickstart-prod.html` to see local changes in action.
7. Create a pull request if you'd like to share your work.
- Leaflet version 1.5.0 (or higher) is required.
- Esri Leaflet 2.3.0 (or higher) is required.
- maplibre-gl-js
- ArcGIS for Developers
- ArcGIS REST Services
- @Esri
Find a bug or want to request a new feature? Please let us know by submitting an issue.
Please take a look at previous issues on Esri Leaflet and Esri Leaflet Vector that resolve common problems.
You can also post issues on the GIS Stack Exchange an/or the Esri Leaflet place on GeoNet.
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
Copyright © 2016-2020 Esri
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
> http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
A copy of the license is available in the repository's LICENSE file.