0

我是 Angular 的新手,一直在玩 Angular google-maps 及其在 plunker http://plnkr.co/edit/KmREW0ANYT8C2LM8dH9l?p=preview中的示例。将天气图层应用于地图,我正在尝试将摄氏度更改为华氏度。

我想我可以在选项范围内以这种方式更改选项:

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;
});

那没有用。我应该在哪里应用该选项?谢谢

4

0 回答 0