# maplibre-gl-js **Repository Path**: openGPL/maplibre-gl-js ## Basic Information - **Project Name**: maplibre-gl-js - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: 1.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-10 - **Last Updated**: 2025-07-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MapLibre GL **MapLibre GL** is a community led fork derived from [mapbox-gl-js](https://github.com/mapbox/mapbox-gl-js) prior to their switch to a non-OSS license. ### Migrating from mapbox-gl If you depend on mapbox-gl directly, simply replace `mapbox-gl` with `maplibre-gl` in `package.json`: ```diff "dependencies": { - "mapbox-gl": "^1.13.0" + "maplibre-gl": ">=1.14.0" } ``` And replace ```mapboxgl``` with ```maplibregl``` in your JavaScript and optionally in your HTML/CSS code: ```diff - var map = new mapboxgl.Map({ + var map = new maplibregl.Map({ -