gpt4 book ai didi

angularjs - 带有模板参数属性的 Angular 谷歌地图窗口指令

转载 作者:行者123 更新时间:2023-12-02 23:04:05 25 4
gpt4 key购买 nike

我正在使用Angular-google-map用这样的窗口显示标记的库:

 <google-map center="map.center"
zoom="map.zoom"
draggable="true"
bounds=""
options ="{styles:map.options}"
>

<marker ng-repeat="hotel in hotelsFiltered"
idKey="hotel.id"
coords="{latitude:hotel.latitude,longitude:hotel.longitude}"
hoteldata="hotel"
icon="icon">
</marker>

<window ng-repeat="hotel in hotelsFiltered"
coords="{latitude:hotel.latitude,longitude:hotel.longitude}"
templateUrl="hotel.templateUrl"
templateParameter="{title:'myTitle'}"
show="hotel.show"
>

</window>


</google-map>

因此,在 window 指令中,我提供了 templateUrl,并且标记成功显示了信息窗口,但问题是我在 templateParameter 中提供的参数似乎无法在模板 View 中访问。这是我的 infoWindow 模板 View 以及我如何尝试从 window 指令访问传递的参数:

<div>
{{title}}
the title was not showed successfully
</div>

最佳答案

我遇到了非常相似的问题,解决方案是更新模板中的绑定(bind),如下所示:

<div>
{{parameter.title}}
</div>

其余代码可以保持不变。

关于angularjs - 带有模板参数属性的 Angular 谷歌地图窗口指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25429429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com