实景地图杭州天气预报 (杭州实景地图卫星地图)

杭州休闲 06-01 阅读:48 评论:0
javascript // 百度地图API密钥 const ak = '您的百度地图API密钥';// 创建地图实例 const map = new BMap.Map('map'); map.centerAndZoom(new BMap.Point(120.154919, 30.280519), 12);// 添加卫星地图控件 map.addControl(new BMap.MapTypeControl());// 实时天气预报 const weatherApiUrl = 'https://restapi.amap.com/v3/weather/weatherInfo?city=101210101&key=您的高德地图API密钥'; $.ajax({url: weatherApiUrl,dataType: 'json',success: function(data) {const weather = data.lives[0];$('weather-forecast').html(`

${weather.city}天气预报

当前温度:${weather.temperature}℃

天气状况:${weather.weather}

风向风速:${weather.winddirection} ${weather.windpower}级

实景地图杭州天气预报 (杭州实景地图卫星地图)

空气质量:${weather.air_quality.quality}

`);},error: function() {console.error('获取天气预报失败');} });
版权声明

本文仅代表作者观点,不代表杭州桑拿立场。
本文系作者授权发表,未经许可,不得转载。