Aeris天气框架中的温度模块

时间:2018-11-25 13:24:00

标签: weather temperature

我想使用aeris天气框架中的以下代码显示摄氏温度,而不是默认华氏温度。

var aerisMapBuilder = new aeris.interactive.MapAppBuilder({
    apiId:'key1',
    apiSecret:'key2',
    el: '#map-canvas',
    modules: {
        map: {
            zoom: 9,
            center: [37.6436,22.4918],
            scrollZoom: true,
        },
        geosearch: {
            geolocate: true
        },
        localWeather: {
            showOnInit: true
        },
        mapControls: {
            expandOnInit: false,
            groups: ['Points']
        },
       layers: {
            objects: [
                {
                    type: 'SatelliteGlobal',
                    selected: true,
                    opacity: .90

                }

            ]
        } 
    }
});

任何想法都会对我有很大帮助!

致谢

1 个答案:

答案 0 :(得分:0)

API文档建议设置本地单位。参考资料1: Configuration Options

建议使用以下功能在JS中设置单位类型

Aeris.wxblox.config.set('unitsType', 'Units.Type.Imperial');