map.component.ts代码:
......
infoWindow = new google.maps.InfoWindow(
{
content: `<custom-tag></custom-tag>` //***not displaying anything***
});
infoWindow.open(map, marker);
......
map.component.html代码:
<custom-tag></custom-tag> <!--***displays hi***-->
<div class="google-maps"></div>
custom-tag.component.html代码:
<h2>hi</h2>
module.ts,routing.ts文件肯定没有错误。 信息窗口只是打开而不显示任何内容, 请帮我弄清楚为什么infowindow没有显示任何东西。
答案 0 :(得分:3)
您必须通过ComponentFactoryResolver
const compFactory = this.resolver.resolveComponentFactory(CustomTag);
this.compRef = compFactory.create(this.injector);
this.appRef.attachView(this.compRef.hostView);
let div = document.createElement('div');
div.appendChild(this.compRef.location.nativeElement);
this.infoWindow.setContent(div);
this.infoWindow.open(this.map, marker);
不要忘记将CustomTag
组件添加到entryComponents