WebGIS之实现查询地区天气并让地区高亮

一.预览>>


 

二.思路>>


        根据搜索框的内容来进行页面视角的切换,对应的地区高亮,右边有关天气的地方实时更新,并且因为代码体量非常小,并没有选择在框架下完成。直接一个html文件搞定了,但实际上还是有一些坑的,比如不太了解的人会把key引入错,关于请求高德接口方面,注意阅读看是否需要其它参数,地理/逆地理编码-基础 API 文档-开发指南-Web服务 API|高德地图API (amap.com)icon-default.png?t=N7T8https://lbs.amap.com/api/webservice/guide/api/georegeo可能之后时间过得久了,对应API发生了变化,及时查阅文档。

三.代码>> 


<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Weather</title><link href="https://api.mapbox.com/mapbox-gl-js/v3.2.0/mapbox-gl.css" rel="stylesheet"><script src="https://api.mapbox.com/mapbox-gl-js/v3.2.0/mapbox-gl.js"></script><script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script><style>body {margin: 0;padding: 0;}#header {width: 100%;height: 100px;background-color: #212121;overflow: hidden;/* 解决margin塌陷,因为group设置了margin-top*/}#map {width: 100%;position: absolute;top: 100px;bottom: 0;}#map .information {padding: 0;margin: 0;list-style: none;width: 200px;height: 300px;position: absolute;z-index: 1;top: 10px;right: 10px;color: #fff;background-color: rgba(0, 0, 0, 0.4);border-radius: 5px;padding: 10px;display: flex;align-items: stretch;justify-content: space-around;flex-direction: column;}#map .information li {border-bottom: 1px solid aqua;font-style: 20px;}.group {display: flex;line-height: 28px;align-items: center;position: relative;max-width: 190px;margin: 0 auto;margin-top: 20px;}.input {width: 100%;height: 40px;line-height: 28px;padding: 0 1rem;padding-left: 2.5rem;border: 2px solid transparent;border-radius: 8px;outline: none;background-color: #f3f3f4;color: #0d0c22;transition: .3s ease;}.input::placeholder {color: #9e9ea7;}.input:focus,input:hover {outline: none;border-color: rgba(234, 76, 137, 0.4);background-color: #fff;box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);}.icon {position: absolute;left: 1rem;fill: #9e9ea7;width: 1rem;height: 1rem;}</style>
</head><body><div id="header"><!-- <input type="text" placeholder="请输入城市名称"> --><div class="group"><svg class="icon" aria-hidden="true" viewBox="0 0 24 24"><g><pathd="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"></path></g></svg><input placeholder="输入城市名称" type="search" class="input"></div></div><div id="map"><ul class="information"><li>当前时间</li><li>城市</li><li>天气</li><li>温度</li><li>风向</li><li>风力</li></ul></div><script type="text/javascript">window._AMapSecurityConfig = {securityJsCode: "写你自己的",};</script><script type="text/javascript"src="https://webapi.amap.com/maps?v=2.0&key=你自己的web端key">        </script><script>const input = document.querySelector('.input');mapboxgl.accessToken = 'pk.eyJ1IjoiY3VkODUiLCJhIjoiY2xrYnFncXZhMGc1cTNlbmFrNHN1N2cxeCJ9.69E3f8nMJkvqQDRhLSojVw';const map = new mapboxgl.Map({container: 'map',style: 'mapbox://styles/mapbox/streets-v12',zoom: 10,center: [116.41667, 39.91667]});document.addEventListener('keypress', function (e) {if (e.key === 'Enter') {const cityName = input.value;//使用完清空,便于下次使用input.value = ''queryWeather(cityName)}})function queryWeather(cityName) {//加载天气查询插件,因为只展示当前天气,没必要调用接口AMap.plugin("AMap.Weather", function () {//创建天气查询实例var weather = new AMap.Weather();//执行实时天气信息查询weather.getLive(cityName, function (err, data) {console.log(data);if (!err) {updateWeatherInfo(data)updateMap(data.city, data.adcode)} else {alert(err)}});});}function updateWeatherInfo(data) {const timeElement = document.querySelector('.information li:nth-child(1)')const cityElement = document.querySelector('.information li:nth-child(2)');const weatherElement = document.querySelector('.information li:nth-child(3)');const tempElement = document.querySelector('.information li:nth-child(4)');const windDirectionElement = document.querySelector('.information li:nth-child(5)');const windPowerElement = document.querySelector('.information li:nth-child(6)');timeElement.textContent = '当前时间:' + data.reportTime;cityElement.textContent = '城市:' + data.city;weatherElement.textContent = '天气:' + data.weather;tempElement.textContent = '温度:' + data.temperature + '°C';windDirectionElement.textContent = '风向:' + data.windDirection;windPowerElement.textContent = '风力:' + data.windPower + '级';}function updateMap(city, adcode) {//调用高德的地理编码API//记住是这个key绑定的是Web服务,跟前面的key不是一种axios({url: `https://restapi.amap.com/v3/geocode/geo?address=${city}&adcode=${adcode}&key=填自己的key`}).then(result => {// console.log(typeof (result.data.geocodes[0].location))  //String类型var locationString = result.data.geocodes[0].location;var coordinates = locationString.split(","); // 经度和纬度之间用逗号分隔,可以根据实际情况调整分隔符// 创建一个新的 LngLat 对象var newCenter = new mapboxgl.LngLat(parseFloat(coordinates[0]), parseFloat(coordinates[1]));//实现视角跳转map.flyTo({center: newCenter,//使动画平滑essential: true})}).catch(error => {console.log(error.message);})// 先检查是否已存在同名的数据源和图层,如果存在,则移除if (map.getSource('json')) {map.removeLayer('place'); // 移除图层map.removeSource('json'); // 移除数据源}//省市的url带有_full,观察adcode的区别来确定模板字符串let url = ''if (adcode[adcode.length - 1] == 0) {url = `https://geo.datav.aliyun.com/areas_v3/bound/${adcode}_full.json`} else {url = `https://geo.datav.aliyun.com/areas_v3/bound/${adcode}.json`}// console.log(url);map.addSource('json', {type: 'geojson',data: url})map.addLayer({id: 'place',type: 'fill',source: 'json',paint: {'fill-color': '#ff5733', // 设置填充颜色为橙红色'fill-opacity': 0.5, // 设置填充不透明度'fill-outline-color': '#ffffff', // 设置边界线的颜色为白色'fill-outline-width': 2 // 设置边界线的宽度}})}</script>
</body></html>

         

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/543931.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PMP的学习方法

PMBOK编撰了管理项目需要的49个过程&#xff08;输入、工具技术、输出&#xff09;。工具技术文件&#xff0c;林林总总百余个。第一部分&#xff0c;按照十大知识领域顺序从前到后编排&#xff1b;第二部分&#xff0c;按照五大过程组顺序重新编排了一遍。 一&#xff0c;PMB…

MySQL语法分类 DQL(2)条件查询

为了更好的学习这里给出基本表数据用于查询操作 create table student (id int, name varchar(20), age int, sex varchar(5),address varchar(100),math int,english int );insert into student (id,name,age,sex,address,math,english) values (1,马云,55,男,杭州,66,78),…

【开源】SpringBoot框架开发房屋出售出租系统

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、功能模块2.1 房屋销售模块2.2 房屋出租模块2.3 预定意向模块2.4 交易订单模块 三、系统展示四、核心代码4.1 查询房屋求租单4.2 查询卖家的房屋求购单4.3 出租意向预定4.4 出租单支付4.5 查询买家房屋销售交易单 五、免责说明 一、摘…

STM32定时器预分频系数和自动重装载系数

现以一个图开始&#xff1a; 预分频器和计数器最大值都为65535&#xff08;从0开始&#xff09; 预分配器&#xff1a;比如输入的是72MHZ的频率&#xff0c;&#xff08;预分频系数为0&#xff09;不分频的话就是一秒数72000000次&#xff0c;如果预分频系数为&#xff08;72…

论文阅读——GeoChat(cvpr2024)

GeoChat : Grounded Large Vision-Language Model for Remote Sensing 一、引言 GeoChat&#xff0c;将多模态指令调整扩展到遥感领域以训练多任务会话助理。 遥感领域缺乏多模式指令调整对话数据集。受到最近指令调优工作的启发&#xff0c;GeoChat 使用 Vicuna-v1.5和自动化…

Java面向对象案例之描述专业和学生(4)

类的方法图 学生类&#xff1a; 属性&#xff1a;学号&#xff0c;姓名&#xff0c;年龄&#xff0c;所学习的专业方法&#xff1a;学习的方法&#xff0c;描述学习状态。描述内容包括姓名、学号、年龄、所学习的专业信息 专业类&#xff1a; 属性&#xff1a;专业编号&#xf…

Day66:WEB攻防-Java安全SPEL表达式SSTI模版注入XXEJDBCMyBatis注入

目录 JavaSec搭建 Hello-Java-Sec搭建 Java安全-SQL注入-JDBC&MyBatis Java安全-XXE注入-Reader&Builder Java安全-SSTI模版-Thymeleaf&URL Java安全-SPEL表达式-SpringBoot框架 知识点&#xff1a; 1、Java安全-SQL注入-JDBC&MyBatis 2、Java安全-XXE注…

RabbitMQ学习总结-基础篇

1..RabbitMQ 本身是一个消息中间件&#xff0c;在服务应用中&#xff0c;可解决高性能&#xff0c;高并发&#xff0c;高应用的问题&#xff0c;极大程度上解决了应用的性能问题。 2.MQ的使用分为生产者和消费者&#xff0c;生产者生产消息&#xff0c;消费者去消费消息。 3.…

一瓶5.86万,听花酒什么来头?

听花酒&#xff0c;到底什么来头&#xff1f; 宣称有提升免疫力、改善睡眠、保障男性功能、调节生理紊乱、抗衰老等功效的听花酒&#xff0c;被315晚会曝光了。 相关话题词随即冲上了热搜。之后&#xff0c;售价最高达58600元的听花酒被京东、拼多多、淘宝等电商平台火速下架…

git pull 报错: 在签出前,请清理存储库工作树

问题&#xff1a; 使用vscode 用git 拉取代码&#xff0c;提示&#xff1a;在签出前&#xff0c;请清理存储库工作树** 原因&#xff1a; git仓库上的代码和本地代码存在冲突了所以会报这个报错。 解决办法&#xff1a; ①git stash 先将本地修改存储起来 ②git pull 拉取远…

<AI大模型学习>——《人工智能AI》

&#xff1c;AI大模型学习&#xff1e;——《人工智能AI》 一、AI大模型通识 1.AI介绍 人工智能&#xff08;Artificial Intelligence&#xff09;&#xff0c;英文缩写为AI。 是新一轮科技革命和产业变革的重要驱动力量&#xff0c; 是研究、开发用于模拟、延伸和扩展人的智…

vue2两个数组嵌套循环返回的新数组item顺序要一致

const newArr [] arr2.forEach(item > { this.allOriC.forEach(item2 > { if (item.dataIndex item2.dataIndex) { newArr.push(item2) } }) })优化下这个代码&#xff0c;返回的新数组item顺序要一致 可以使用JavaScript的​​Array.prototype.map()​​​和​​Arra…