Table of Contents
Introduction
โChange is hard.โ While it may be an old adage, this doesnโt apply to your mapping platform services. There might be a number of reasons for seeking alternatives to an existing mapping framework like mapbox-gl
โ changes to business models, licensing terms or just the desire to move towards using open source mapping components.
Whatever the underlying need, the change from using mapbox-gl
to the open source version, maplibre-gl
, with location and mapping services from NextBillion.ai, takes only a few lines of codeโฆ I promise!
From the MapLibreGL website: โMotivated by the 2020 transition to proprietary licensing for Mapbox GL JS, the initial libraries are forks of the Mapbox GL ecosystem โ for the web and mobile platforms.
Our goal is to continue building on the foundation of Mapboxโs original open-source code under the BSD license without tracking end-users.โ
Starting Point
If you are mapping today with mapbox-gl
, there are a number of possible ways to integrate that into your solutions. Iโm going to provide one simple example that uses the React framework. In the project repo for this article, we have similar examples for a few other common frameworks.
Hereโs a view of an interactive mapping application using mapbox-gl
created using the create-react-app
tooling and a minimal example.
Now letโs transition this mapping application away from the mapbox-gl
dependency and over to maplibre-gl
and NextBillion.ai mapping services.
โCh-ch-ch-Changesโ
The starting project that created the mapping application shown above has some code behind it that likely looks similar to your applicationโs dependencies on mapbox-gl
. The lines that we will change are bolded in the code block below.
package.json
...
"@types/mapbox-gl":"2.7.1",
"mapbox-gl":"2.8.2"
}
App.tsx
import * as React from "react";
import mapboxgl, { Map, NavigationControl } from "mapbox-gl";
const MapboxGL: React.FunctionComponent = (props) => {
const mapContainerRef = React.useRef(null);
mapboxgl.accessToken = "api_tracking_key_maploads";
React.useEffect(() => {
if (mapContainerRef.current != null) {
const map = new Map({
container: mapContainerRef.current,
style:
"mapbox://styles/mapbox/streets-v11",
center: [-83.1264, 40.11959],
zoom: 12
});
}
}, []);return (
<div
ref={mapContainerRef}
style={{
width: "100vw",
height: "100vh"
}}
/>
);
};export default MapboxGL;
Now make some quick changes to the package.json
and App.tsx
file, including dropping the requirement to provide the Mapbox access token. Weโll use NextBillion.ai tile services as a replacement for the Mapbox tile in this example as well.
package.json
...
"@types/maplibre-gl":"1.14.0",
"maplibre-gl":"2.1.9"
},
App.tsx
import * as React from "react";
import maplibre, {Map} from "maplibre-gl";
const NBMapLibre: React.FunctionComponent = (props) => {
const mapContainerRef = React.useRef(null);React.useEffect(() => {
if (mapContainerRef.current != null) {
const map = new Map({
container: mapContainerRef.current,
style:
"https://api.nextbillion.io/maps/streets/style.json?key=YOUR_NBAI_KEY",
center: [-83.1264, 40.11959],
zoom: 12
});
}
}, []);return (
<div
ref={mapContainerRef}
style={{
width: "100vw",
height: "100vh"
}}
/>
);
};export default NBMapLibre;
The end result is a map display with the same interactivity and the mapbox-gl
dependency removed. Easy-peasy!
Next Stepsโฆ
Clone the example above and others in the project repo โ https://git.nextbillion.io/jim.welch/maplibrenextbillion
In our subsequent articles, weโll look into the easy steps needed to migrate a Directions API and Distance Matrix integration over to NextBillion.ai. Stay tuned and keep on mapping!
Ready to get started?
Request a DemoTable of Contents