Angular Google 地图 ui-gmap-markers 标签

Angular Google Maps ui-gmap-markers labels

我已经用 google 地图创建了 angular 应用程序。在地图上我显示标记。但对我来说,如何创建一个将在点击时打开的标签(在 pin 上)仍然不是很明显。

请帮帮我

    <ui-gmap-google-map center='map.center' zoom='map.zoom'>
    <ui-gmap-circle center='map.marker'
       radius='8046'
       fill='map.circle.fill'
       stroke='map.circle.stroke'>
   </ui-gmap-circle>
   <ui-gmap-markers models="notices"
       coords="'location'">
   </ui-gmap-markers>
   </ui-gmap-google-map>

需要在 <ui-gmap-markers> 标签内使用 <ui-gmap-windows> 标签

<ui-gmap-markers models="randomMarkers" coords="'self'" icon="'icon'" click="'onClick'">
    <ui-gmap-windows show="show">
        <div ng-non-bindable>{{title}}</div>
    </ui-gmap-windows>
</ui-gmap-markers>