属性 'utm' 在类型 'typeof 上不存在

Property 'utm' does not exist on type 'typeof

我正在使用 Angular 10.

做一个项目的前端

其中我使用传单来显示地图但是需要安装依赖项(leaflet.utm),但我不知道如何区分L和两个库(传单和 leatlet.utm).

模块安装:

npm i leaflet.utm@0.0.4

进口:

...
import * as L from 'leaflet';
...

我尝试使用的代码:

var item = L.utm({x: 467486.3, y: 4101149.3, zone: 30, band: 'S'});

抛出的异常:

Property 'utm' does not exist on type 'typeof import("../node_modules/@types/leaflet/index")'.ts(2339)

您还需要导入 leaflet.utm

import * as L from 'leaflet';
import 'leaflet.utm';