“Location”类型的参数不可分配给“BackgroundGeoLocationEvents”类型的参数

Argument of type “Location” is not assignable to parameter of type “BackgroundGeoLocationEvents”

看来我无法为 Background Geolocation plugin 定义 "location" 事件。

我试过了:

有什么问题吗?

看来这可能是文档中的错误?

尝试只玩它想让你玩的游戏。

而不是:

this.backgroundGeolocation.on("location")...

使用:

this.backgroundGeolocation.on(BackgroundGeolocationEvents.location)...

您可能还需要在顶部添加导入,以便在 BackgroundGeolocationEvents 中导入。