在我的项目中,我有一些选项卡,其中一个是Here Map元素,我已经将其放置在自己的组件中并在主视图中使用。我希望能够在新窗口中使用此组件,但可以从父组件调用函数。我该如何实现?
我已经尝试了几种解决方案,到目前为止,这个https://stackblitz.com/edit/angular-open-window-etturt最接近我的解决方案,但是我无法在组件中引用函数,并且该函数变得不确定。该组件具有一个Promise Function im,用于初始化地图。
this.hereMaps
.loadScript()
.then(() => {
`//do something when ready
})
.catch((err: any) => {
throw err;
});```
I want to be able to use this function, and other functions like the geocoder.