Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 1.35 KB

API.md

File metadata and controls

43 lines (25 loc) · 1.35 KB

L.maplibreGL(options)

Create a new MapLibre GL layer in a Leaflet-compatible wrapper.

Extends: L.Class

options is an object of options. All options given are passed to a MapLibre GL Map object, so consult the MapLibre GL .Map documentation for the full range.

Option Value Description
padding number [0.15]
interactive boolean [false]

layer.addTo(map)

Same behavior as .addTo on any Leaflet layer: this adds the layer to a given map or group.

layer.getMaplibreMap(): maplibre.Map

Returns maplibre-gl.Map object.

layer.getContainer(): HTMLDivElement

Returns layer's DOM container div.

layer.getCanvas(): HTMLCanvasElement

Returns maplibre-gl.Map canvas.

layer.getSize(): L.Point

Returns layer size in pixels including padding.

layer.getBounds(): L.LatLngBounds

Returns layer bounds including padding.

layer.getPaneName(): string

Returns the pane name set in options if it is a valid pane, defaults to tilePane.