我正在尝试包含一个模板文件views/infowindow.html
作为我为启动 google maps api 而编写的服务中的 InfoWindow 的内容:
for ( var count = locations.length, i = 0; i < count; i++ ) {
var latLng = locations[i],
marker = new google.maps.Marker({
…
}),
infowindow = new google.maps.InfoWindow();
google.maps.event.addListener(
marker,
'click',
(function( marker , latLng ){
return function(){
var content = '<div ng-include src="\'infowindow.html\'"></div>';
infowindow.setContent( content );
infowindow.open( Map , marker );
}//return fn()
})( marker , latLng )
);//addListener
}//for
content
但是,当 Angular插入 InfoWindow 时,它似乎没有处理(当通过开发工具检查代码时,插入的代码是<div ng-include src="'views/infowindow.html'"></div>
)。
我希望 Angular 在将我的包含插入到 InfoWindow 之前对其进行预处理,但可惜没有。
我正在尝试做的事情可能吗?
我在想,在将模板传递给之前,我必须以某种方式缓存模板infowindow.setContent()
,但我不知道该怎么做(或者如果这甚至是我应该做的)。我宁愿在事件上加载模板,而不是为每个标记缓存和注入它。
编辑查看 $templateCache 和相关的 SO question。
编辑 2这是一个尝试使用的plunk$compile
(InfoWindow 的内容仍然是<div id="infowindow_content" ng-include src="'infowindow.html'"></div>
)
解决方案
其基础来自马克的回答如下。在他的解决方案中,InfoWindow 的内容在第一次单击(任何标记)时编译,但 InfoWindow 直到再次单击任何标记时才真正打开,可能是因为 GoogleMaps 不耐烦。
移到$compile
外面,然后把编译好的模板传进去就 .addListener
解决了这个问题:
for ( … ) {
…
infowindow = new google.maps.InfoWindow();
scope.markers …
var content = '<div id="infowindow_content" ng-include src="\'infowindow.html\'"></div>';
var compiled = $compile(content)(scope);
google.maps.event.addListener(
marker,
'click',
(function( marker , scope, compiled , localLatLng ){
return function(){
scope.latLng = localLatLng;//to make data available to template
scope.$apply();//must be inside write new values for each marker
infowindow.setContent( compiled[0].innerHTML );
infowindow.open( Map , marker );
};//return fn()
})( marker , scope, compiled , scope.markers[i].locations )
);//addListener
}//for