UNPKG

react-leaflet

Version:

React components for Leaflet maps

11 lines 376 B
import { createTileLayerComponent, updateGridLayer, withPane } from '@react-leaflet/core'; import { TileLayer as LeafletTileLayer } from 'leaflet'; export const TileLayer = createTileLayerComponent(function createTileLayer({ url, ...options }, context) { return { instance: new LeafletTileLayer(url, withPane(options, context)), context }; }, updateGridLayer);