UNPKG

226 BJavaScriptView Raw
1import { createControlComponent } from '@react-leaflet/core';
2import { Control } from 'leaflet';
3export const ScaleControl = createControlComponent(function createScaleControl(props) {
4 return new Control.Scale(props);
5});