esri-gl 0.9.0-alpha.7 → 0.9.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +12 -2
package/README.md CHANGED
@@ -2,10 +2,19 @@
2
2
 
3
3
  A TypeScript library that bridges Esri ArcGIS REST services with MapLibre GL JS and Mapbox GL JS. It replicates Esri Leaflet's architecture patterns while being compatible with modern WebGL mapping libraries.
4
4
 
5
+ > **🚧 Development Notice**
6
+ >
7
+ > This project is currently under active development. APIs may change between releases and some features may not be fully stable. Please use with caution in production environments and check the [changelog](CHANGES.md) for breaking changes between versions.
8
+
5
9
  [![npm version](https://badge.fury.io/js/esri-gl.svg)](https://badge.fury.io/js/esri-gl)
6
10
  [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
7
11
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
12
 
13
+ ## 🔗 Links
14
+
15
+ - **📚 [Documentation](https://esri-gl.netlify.app/)** - Complete API reference and guides
16
+ - **🎮 [Live Demos](https://esri-gl-demo.netlify.app/)** - Interactive examples and code samples
17
+
9
18
  **Note**: This library is compatible with both **MapLibre GL JS** and **Mapbox GL JS**.
10
19
 
11
20
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esri-gl",
3
- "version": "0.9.0-alpha.7",
3
+ "version": "0.9.0-alpha.9",
4
4
  "type": "module",
5
5
  "description": "A module for making it easier to use Esri services in mapbox-gl or maplibre-gl.",
6
6
  "main": "dist/esri-gl.js",
@@ -102,5 +102,15 @@
102
102
  "homepage": "https://esri-gl.netlify.app",
103
103
  "demo": "https://esri-gl-demo.netlify.app",
104
104
  "author": "Muhammad Imran Siddique 2025, Rowan Winsemius 2020-2025",
105
- "license": "MIT"
105
+ "license": "MIT",
106
+ "keywords": [
107
+ "mapbox",
108
+ "maplibre",
109
+ "map",
110
+ "esri",
111
+ "gl",
112
+ "typescript",
113
+ "react",
114
+ "react-map-gl"
115
+ ]
106
116
  }