0
我使用的是angularjs谷歌地圖,我想自定義樣式顯示在標記點擊的信息窗口。 ui-gmap-window標籤具有自定義選項,並且可以很好地獨立運行。 但是,當我嘗試在標記標記(ui-gmap-markers)內使用它時 - 它不會在標記點擊上顯示自定義樣式的infoWindow。 012lkplunkr清楚地解釋了這個問題。自定義infowindow標記點擊使用angularjs谷歌地圖
http://plnkr.co/edit/Mif7wX1eEkwtfAQ93BCI?p=info
<ui-gmap-google-map center="map.center" zoom="map.zoom" draggable="true" options="options" bounds="map.bounds">
<!-- WORKS FINE STANDLONE WINDOW -->
<ui-gmap-window show="show1" coords="map.center" options="windowOptions"></ui-gmap-window>
<ui-gmap-markers models="randomMarkers" coords="'self'" icon="'icon'" click="onClick">
<!-- DOES NOT WORK INSIDE MARKERS TAG-->
<ui-gmap-windows show="show" options="windowOptions">
</ui-gmap-windows>
</ui-gmap-markers>
</ui-gmap-google-map>