I am using angularjs google maps and i would like to custom style the infoWindow which is displayed on a marker click. The ui-gmap-window tag does have custom options and it works fine standalone. However when i try to use it inside the markers tag (ui-gmap-markers) - it does not display the custom styled infoWindow on marker click. The plunkr explains the problem clearly.
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>