Angular Google 地图闪烁问题(ng-cloak、ng-bind 不工作!)
Angular Google Map flikering issue (ng-cloak, ng-bind is not working!)
我在 Angular Google 地图中遇到闪烁问题。
我在这个 Plunker 中遇到了问题。
http://plnkr.co/edit/f2gxG7DM1U8IlOXfRiuT?p=preview
当我点击标记时,infowindow 在显示信息之前闪烁。我尝试了 ng-cloack、ng-bind
<div ng-controller="templateController ng-cloak">
Template ID: {{parameter.id}} </div>
<div ng-controller="templateController ">
<span ng-bind="map.window"</span> </div>
但是,他们都没有解决它。
谁能救救我?
下面的答案不是我的,它是由 cthrax 在 Angular Google Map Team.(https://github.com/angular-ui/angular-google-maps/issues/1399)
嗯,这似乎与呈现 templateUrl 有关。如果你嵌入模板,它似乎工作得更好。 http://plnkr.co/edit/yluY5N0BI8Sv4fxUW9Pp?p=preview 不确定这是错误还是重新编译模板的事实。
<ui-gmap-window show="map.window.show" coords="map.window.model" ng-cloak>
<div ng-controller="templateController">
Template ID: {{map.window.model.id}}
</div>
</ui-gmap-window>
我在 Angular Google 地图中遇到闪烁问题。
我在这个 Plunker 中遇到了问题。 http://plnkr.co/edit/f2gxG7DM1U8IlOXfRiuT?p=preview
当我点击标记时,infowindow 在显示信息之前闪烁。我尝试了 ng-cloack、ng-bind
<div ng-controller="templateController ng-cloak">
Template ID: {{parameter.id}} </div>
<div ng-controller="templateController ">
<span ng-bind="map.window"</span> </div>
但是,他们都没有解决它。
谁能救救我?
下面的答案不是我的,它是由 cthrax 在 Angular Google Map Team.(https://github.com/angular-ui/angular-google-maps/issues/1399)
嗯,这似乎与呈现 templateUrl 有关。如果你嵌入模板,它似乎工作得更好。 http://plnkr.co/edit/yluY5N0BI8Sv4fxUW9Pp?p=preview 不确定这是错误还是重新编译模板的事实。
<ui-gmap-window show="map.window.show" coords="map.window.model" ng-cloak>
<div ng-controller="templateController">
Template ID: {{map.window.model.id}}
</div>
</ui-gmap-window>