Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Latest commit

 

History

History
51 lines (40 loc) · 1.4 KB

README.md

File metadata and controls

51 lines (40 loc) · 1.4 KB

So… what’s going on here?

Yeah, I know, mapdeck already uses Mapbox! But, it’s not straight forward controlling the underlying map, like setting maxBounds (as requested in this issue), because the map object isn’t a standard Mapbox map object.

For those of you interested, the map is defined in the Deck constructor

const deckgl = new deck.DeckGL({
  mapboxApiAccessToken: x.access_token,
  container: el.id,
  mapStyle: x.style,
  layers: [],
});

Fortunately, Deck.gl also gives us a Mapbox Layer, which lets you use the Deck.gl layers on top of a standard Mapbox map object.

For example

const map = new mapboxgl.Map({...});

const myScatterplotLayer = new MapboxLayer({
    id: 'my-scatterplot',
    type: ScatterplotLayer,
    data: [
        {position: [-74.5, 40], size: 100}
    ],
    getPosition: d => d.position,
    getRadius: d => d.size,
    getColor: [255, 0, 0]
});

// add to mapbox
map.addLayer(myScatterplotLayer);

So this package will give you the ‘standard’ Mapbox map, and I’m updating mapdeck so it will accept this Mapbox map object and add the layers accordingly.