Package Exports
- @esri/maplibre-arcgis
- @esri/maplibre-arcgis/package.json
Readme
@esri/maplibre-arcgis
A MapLibre GL JS plugin for integrating with ArcGIS services, including basemaps, vector tiles, and feature layers.
This project is maintained with ❤️ by folks at Esri, but we provide no guarantee of individual features, nor a traditional product lifecycle to support planning.
Table of contents
Quick start
MapLibre ArcGIS is available via CDN and NPM. Once imported, the library can be used to display a basemap style and add layers.
import maplibregl from 'maplibre-gl';
import maplibreArcGIS from '@esri/maplibre-arcgis';
// Initialize MapLibre GL JS map
const map = new maplibregl.Map({
container: "map",
zoom: 5,
center: [138.2529, 36.2048],
});
// Apply an ArcGIS basemap style to the map
const basemapStyle = maplibreArcGIS.BasemapStyle.applyStyle(map, {
style: 'arcgis/navigation',
token: apiKey
});
// Listen for the map 'load' event.
map.on('load', async () => {
// Add a vector tile layer using an ArcGIS Item ID.
const vectorLayer = await maplibreArcGIS.VectorTileLayer.fromPortalItem('b8f6941ceb874d72a7c37418c3e8108d');
vectorLayer.addSourcesAndLayersTo(map);
});
For a complete example, go to the developer guide: Maplibre ArcGIS quick start.
Features
MapLibre ArcGIS provides layers and utilities for accessing ArcGIS resources in a MapLibre GL JS application. In addition to the wide variety of basemap styles offered by ArcGIS, this package also allows you to access and display your own hosted data using MapLibre GL JS. The following resources are supported:
- Basemap styles (
BasemapStyle
) - Feature layers and feature services as GeoJSON (
FeatureLayer
) - Vector tile layers (
VectorTileLayer
) - Session tokens authentication for ArcGIS basemap styles (
BasemapSession
)
Tutorials and API reference
Tutorials, samples, and API reference can be found at developers.com/maplibre-gl-js.
Issues
Find a bug? Want a new feature? Let us know by submitting an issue.
For more help, you can post on the open source forum of Esri Community or contact Esri Technical Support.
Dependencies
- maplibre-gl-js is a required peer dependency.
- ArcGIS REST JS is used internally:
Contributing
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
Development instructions
To start developing locally:
- Fork and clone this repo.
cd
into themaplibre-arcgis
folder.- Install build dependencies with
npm install
. - Use
npm run build:dev
to build the files locally for development. Output is saved to the/dist
folder. - Alternatively, use
npm run start:dev
to start a development server. Files are rebuilt automatically when changes to the source code are made. - Change the library as desired and use
npm run test
to validate.
If you'd like to contribute to this repository, create a pull request containing your work.
Versioning
For transparency into the release cycle and in striving to maintain backward compatibility, Esri MapLibre is maintained under Semantic Versioning guidelines and will adhere to these rules whenever possible.
For more information on SemVer, please visit http://semver.org/.
Credit
This project was inspired by several existing bodies of work, including:
- The ArcGIS x MapLibre GL JS developer guide
- The mapbox-gl-esri-sources and mapbox-gl-arcgis-featureserver plugins
- The ArcGIS Maps SDK for JavaScript
Concepts and programming patterns were used for inspiration, but all code is original.
Licensing
Copyright © 2025 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
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.