JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 144
  • Score
    100M100P100Q83102F
  • License Apache-2.0

Wrapper for integrating ArcGIS data sources with MapLibre GL JS

Package Exports

  • @esri/maplibre-arcgis
  • @esri/maplibre-arcgis/package.json

Readme

NPM Version apache 2.0 licensed

@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.

Trails and parks styled with MapLibre ArcGIS.

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:

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


Contributing

Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.

Development instructions

To start developing locally:

  1. Fork and clone this repo.
  2. cd into the maplibre-arcgis folder.
  3. Install build dependencies with npm install.
  4. Use npm run build:dev to build the files locally for development. Output is saved to the /dist folder.
  5. Alternatively, use npm run start:dev to start a development server. Files are rebuilt automatically when changes to the source code are made.
  6. 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:

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

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.