IGoogleMapTrackerProps

IGoogleMapTrackerProps

javascript - 属性“google”不存在于类型“Readonly <{IGoogleMapTrackerProps}>和Readonly <{chirldren ?: ReactNode; }>'-LMLPHP

我是SharePoint的新手开发人员,并且坚持使用Google地图。我安装了google-maps-react,但显示一个错误。我不知道该怎么解决...请让我知道这个解决方案...谢谢

最佳答案

好吧,它告诉您google不是IGoogleMapTrackerProps中的属性。您指定了将拥有IGoogleMapTrackerProps的道具,但您提供的是Google道具。

如果是有意的,则可以扩展IGoogleMapTrackerProps以包括google,例如:

interface Props extends IGoogleMapTrackerProps  {
    google: // type of google
}


并在类定义中使用Props接口而不是IGoogleMapTrackerProps。

09-07 20:30