7
我正在使用Angular UI地圖,並且似乎無法找到用於更改樣式的選項的指令。 Googles documention給出了一個使用google對象的例子。 我試過getElementById地圖,但是這會導致ui對象的過多錯誤。Angular Google Map的自定義樣式
我的控制器有:
$scope.map = { center: { latitude: 42.99, longitude: -81.255 }, zoom: 14, bounds: {}};
雖然HTML是:在適當的代碼添加到style
範圍
<div id="map_canvas">
<ui-gmap-google-map id='customMap' center="map.center" zoom="map.zoom" draggable="true" options="options" bounds="map.bounds">
<ui-gmap-markers models="eventMarkers" coords="'self'" idKey="'id'" icon="'icon'" click="'onClick'">
<ui-gmap-windows show="show">
<div ng-non-bindable>{{content}}</div>
</ui-gmap-windows>
</ui-gmap-markers>
</ui-gmap-google-map>
</div>
簡單的嘗試,沒有改變任何東西,或導致任何錯誤。
美麗,完全錯過了我的選擇,愚蠢的我 – rodling 2015-02-12 15:49:56