私は Angular を初めて使用し、Angular の Google マップとその例を plunker http://plnkr.co/edit/KmREW0ANYT8C2LM8dH9l?p=previewで遊んでいます。気象レイヤーをマップに適用して、摂氏を華氏に変更しようとしています。
options スコープで、この方法でオプションを変更できると考えました。
angular.module('appMaps', ['google-maps'.ns()])
.controller('mainCtrl', function($scope) {
$scope.map = {center: {latitude: 51.219053, longitude: 4.404418 }, zoom: 4 };
$scope.options = {scrollwheel: false, temperatureUnits: google.maps.weather.TemperatureUnit.FAHRENHEIT};
$scope.showWeather = true;
});
それはうまくいきませんでした。そのオプションをどこに適用すればよいですか? ありがとう