Skip to content

Instantly share code, notes, and snippets.

@marceloch2
Created November 3, 2015 02:21
Show Gist options
  • Save marceloch2/c36cebe23b74dead065c to your computer and use it in GitHub Desktop.
Save marceloch2/c36cebe23b74dead065c to your computer and use it in GitHub Desktop.
directives code
<ui-gmap-google-map center="map.center" zoom="map.zoom" draggable="true" options="options" bounds="map.bounds">
<ui-gmap-markers models="coordsWeldsWithConnection" coords="'self'" icon="'icon'" options="'options'" idKey="'id'" doRebuildAll="true" events="'events'">
<ui-gmap-windows show="true">
<div ng-non-bindable>LOREM</div>
</ui-gmap-windows>
</ui-gmap-markers>
<ui-gmap-markers models="coordsWeldsWithOutConnection" coords="'self'" icon="'icon'" options="'options'" idKey="'id'" doRebuildAll="true" events="'events'"></ui-gmap-markers>
<ui-gmap-markers models="lagers" coords="'self'" icon="'icon'" options="'options'" idKey="'id'"></ui-gmap-markers>
<ui-gmap-markers models="externalLagers" coords="'self'" icon="'icon'" options="'options'" idKey="'id'"></ui-gmap-markers>
<ui-gmap-polyline ng-repeat="p in polylines" path="p.path" stroke="p.stroke" visible='p.visible' editable="p.editable" draggable="p.draggable"></ui-gmap-polyline>
</ui-gmap-google-map>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment