高德地图API-鼠标点击地图获取经纬度坐标(关键操作)

效果图:

 

 有了经纬度坐标,就可以得到城市的:adcode区域编码

 html版本

<!doctype html>
<html>
<head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width"><title>根据ip定位</title><link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css"/> <style type="text/css">html,body,#container{height:100%;}</style>
</head>
<body><div id="container"></div><div class="info" id="text">请用鼠标在地图上操作试试</div><div class="input-card" style="width:16rem"><h4>地图点击相关事件</h4><div><div class="input-item"><button id="clickOn" class="btn" style="margin-right:1rem;">绑定事件</button><button id="clickOff" class="btn">解绑事件</button></div></div></div><script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=填入高德Web端key&plugin=AMap.CitySearch"></script>
<script type="text/javascript">
var map;
var marker;
var ilon = 114.468668;
var ilat = 38.03703;var map = new AMap.Map("container", {zoom: 13,});// 实例化点标记
marker = new AMap.Marker({icon: "https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png",position: [ilon, ilat],offset: new AMap.Pixel(-25, -60)});
map.setZoomAndCenter(13, [ilon, ilat]);
map.add(marker)function showInfoDbClick(e){var text = '您在 [ '+e.lnglat.getLng()+','+e.lnglat.getLat()+' ] 的位置双击了地图!'document.querySelector("#text").innerText = text;
}
function showInfoMove(){var text = '您移动了您的鼠标!'document.querySelector("#text").innerText = text;
}
// 事件绑定
function clickOn(){console.log('绑定成功')  map.on('click', function (e) {map.clearMap();//console.log(e.lnglat);marker = new AMap.Marker({icon: 'https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',position: [e.lnglat.lng, e.lnglat.lat],offset: new AMap.Pixel(-25, -60)});var text = '您在 [ '+e.lnglat.getLng()+','+e.lnglat.getLat()+' ] 的位置单击了地图!'document.querySelector("#text").innerText = text;console.log(text)map.add(marker);})map.on('dblclick', showInfoDbClick);map.on('mousemove', showInfoMove);}
// 解绑事件
function clickOff(){log.success("解除事件绑定!"); map.off('click', showInfoClick);map.off('dblclick', showInfoDbClick);map.off('mousemove', showInfoMove);
}// 给按钮绑定事件
document.getElementById("clickOn").onclick = clickOn;</script>
</body>
</html>

转化为vue版本:

使用的是web服务API

map.vue

<template>
  <view class="container">
    <view id="map-container" class="map-container"></view>
    <view class="info" id="text">请用鼠标在地图上操作试试</view>
    
    <view class="input-card" style="width:16rem">
   <!--   <text class="title">地图点击相关事件</text> -->
                <view class="showweatherdata" id="weatherdata">
                  <text class="province">省份</text>
                  <text class="city">城市</text>
                  <text class="weather">天气</text>
                  <text class="temperature">气温</text>
                  <text class="winddirection">风向</text>
                  <text class="windpower">风力级别</text>
                  <text class="humidity">空气湿度</text>
                  <text class="reporttime">数据发布时间</text>
                </view>
      
    </view>
    
  </view>
</template>

<script>
export default {
  data() {
    return {
      map: null,
      marker: null,
      ilon: 114.468668,
      ilat: 38.03703,
      weather: {
            province: '',    
            city: '',    
            weather: '',
            temperature: '',
            winddirection: '',
            windpower: '',
            humidity: '',
            reporttime: '',
          }    ,
          
    };
  },
  mounted() {
    this.initMap();
    
  },
  methods: {
    initMap() {
      // 创建AMap实例
      this.map = new AMap.Map("map-container", {
        zoom: 13
      });

      // 创建点标记
      this.marker = new AMap.Marker({
        icon: "https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png",
        position: [this.ilon, this.ilat],
        offset: new AMap.Pixel(-25, -60)
      });

      // 设置地图中心和缩放级别
      this.map.setZoomAndCenter(13, [this.ilon, this.ilat]);

      // 在地图上添加点标记
      this.map.add(this.marker);

      // 绑定地图事件
      this.map.on("click", this.handleMapClick);
      this.map.on("dblclick", this.handleMapDblClick);
      this.map.on("mousemove", this.handleMapMove);
    },
    handleMapClick(e) {
         console.log('执行了');
      // 处理地图单击事件
      this.map.clearMap();
      this.marker = new AMap.Marker({
        icon: "https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png",
        position: [e.lnglat.lng, e.lnglat.lat],
        offset: new AMap.Pixel(-25, -60)
      });

      const text = `您在 [ ${e.lnglat.lng},${e.lnglat.lat} ] 的位置单击了地图!`;
      document.querySelector("#text").innerText = text;
      console.log(text);

      this.map.add(this.marker);
      
      // 发送逆地理编码请求
    const location = `${e.lnglat.lng},${e.lnglat.lat}`;
    console.log('adcode是'+location);
     this.reverseGeocode(location);
    },
    
    reverseGeocode(location) {
          const url = `https://restapi.amap.com/v3/geocode/regeo?output=JSON&location=${location}&key=&radius=1000&extensions=base`;
        uni.request({
            url:url,
            success:(res)=>{
                uni.showToast({
                    title:'请求成功',
                    icon:'success'
                });
            const result = res.data;
            console.log('逆地理编码结果:', result);
            const adcode =result.regeocode.addressComponent.adcode
            console.log('adcode 的值:'+ adcode);
            this.Gaode_Weather(adcode);
            },
            fail:(error)=> {
                console.log('请求失败:',error);
                uni.showToast({
                    title:'请求失败',
                    icon:'none'
                });
            }
        })
          
        },
    Gaode_Weather(adcode){
        const url =`https://restapi.amap.com/v3/weather/weatherInfo?city=${adcode}&key=`;
        uni.request({
            url: url,
            success: (res) => {
              const result = res.data;
              if (result.status === "1" && result.count === "1" && result.info === "OK" && result.infocode === "10000") {
                // 确保返回的数据状态是成功的
                console.log('地区天气数据:', result);
                if (result.lives && Array.isArray(result.lives)) {
                  // 遍历 lives 数组
                  result.lives.forEach((live) => {
                    document.querySelector("#weatherdata .province").innerText = `省份:${live.province}`;
                   document.querySelector("#weatherdata .city").innerText = `城市:${live.city}`;
                   document.querySelector("#weatherdata .weather").innerText = `天气:${live.weather}`;
                   document.querySelector("#weatherdata .temperature").innerText = `气温:${live.temperature}`;
                   document.querySelector("#weatherdata .winddirection").innerText = `风向:${live.winddirection}`;
                   document.querySelector("#weatherdata .windpower").innerText = `风力级别:${live.windpower}`;
                   document.querySelector("#weatherdata .humidity").innerText = `空气湿度:${live.humidity}`;
                   document.querySelector("#weatherdata .reporttime").innerText = `数据发布时间:${live.reporttime}`;
                      
                    console.log('天气详情:', live);
                  });
                }
              } else {
                console.error('天气数据请求失败:', result);
              }
            },
            fail: (err) => {
              console.error('请求天气数据失败:', err);
            }
          });
    },    
    handleMapDblClick(e) {
      // 处理地图双击事件
      const text = `您在 [ ${e.lnglat.lng},${e.lnglat.lat} ] 的位置双击了地图!`;
      document.querySelector("#text").innerText = text;
    },
    handleMapMove() {
      // 处理地图鼠标移动事件
      const text = "您移动了您的鼠标!";
      document.querySelector("#text").innerText = text;
    },
    bindEvent() {
      // 绑定地图事件
      this.map.on("click", this.handleMapClick);
      this.map.on("dblclick", this.handleMapDblClick);
      this.map.on("mousemove", this.handleMapMove);
    },
    unbindEvent() {
      // 解绑地图事件
      this.map.off("click", this.handleMapClick);
      this.map.off("dblclick", this.handleMapDblClick);
      this.map.off("mousemove", this.handleMapMove);
    }
  }
};
</script>

<style scoped>

/* 卡片容器样式 */
.showweatherdata {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4列 */
  grid-gap: 10px; /* 网格间距 */
  padding: 20px; /* 内边距 */
  border-radius: 10px; /* 圆角 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 轻微的阴影,模拟卡片效果 */
  margin: 20px; /* 外边距 */
}

/* 文本样式 */
.showweatherdata text {
  font-size: 16px; /* 字体大小 */
  color: #333; /* 字体颜色 */
  line-height: 1.5; /* 行高 */
  margin-bottom: 5px; /* 下边距 */
}

/* 每行的最后一个元素不显示下边距 */
.showweatherdata text:last-child {
  margin-bottom: 0;
}

/* 为每一行添加额外的间距,实现 2 行布局 */
.showweatherdata text:nth-child(-n+8) {
  margin-bottom: 20px; /* 行间距 */
}

/* 绿色调主题颜色 */
.showweatherdata .province,
.showweatherdata .city,
.showweatherdata .weather,
.showweatherdata .temperature,
.showweatherdata .winddirection,
.showweatherdata .windpower,
.showweatherdata .humidity,
.showweatherdata .reporttime {
  color: #2e7d32; /* 主题绿色 */
  border-left: 4px solid #43a047; /* 边框颜色 */
  padding-left: 10px; /* 内边距 */
}

/* 媒体查询,适应小屏幕设备 */
@media (max-width: 768px) {
  .showweatherdata {
    grid-template-columns: repeat(2, 1fr); /* 在小屏幕上改为 2 列 */
  }
}

    
.container {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#map-container {
  flex: 1;
}

.info {
  padding: 10px;
  text-align: center;
  background-color: #f0f0f0;
}

.input-card {
  padding: 10px;
  margin-top: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.title {
  font-size: 16px;
  font-weight: bold;
}

.btn {
  padding: 5px 10px;
  background-color: #409eff;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
</style>

main.js

这个的web端key是

 

import App from './App'
import uView from "@/uni_modules/uview-ui"
import AMapLoader from '@amap/amap-jsapi-loader'

Vue.use(uView)

AMapLoader.load({
  "key": "",
  "version": "2.0"
}).then(() => {
  new Vue({
    render: h => h(App)
  }).$mount('#app')
})
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
    ...App
})
app.$mount()
// #endif

// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
  const app = createSSRApp(App)
  return {
    app
  }
}
// #endif

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

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

相关文章

瞪羚企业申报要求材料

申报企业还需提供以下材料&#xff0c;并依顺序装订成册。申报材料的内容一定要能够公开的&#xff0c;不会涉及到国家安全等机密信息。 1.“瞪羚企业”认定申请书&#xff1b; 2.企业营业执照复印件&#xff1b; 3.经审计的近三年的财务报告&#xff1b; 4.近3年企业所得税…

低配置的电脑上刷新WPF DataGrid 很卡,如何优化?

要优化低配置电脑上WPF DataGrid的刷新卡顿问题&#xff0c;可以尝试以下几种方法&#xff1a; 启用虚拟化技术&#xff1a; VirtualizingStackPanel.IsVirtualizing"True" 。 WPF DataGrid支持行虚拟化&#xff0c;这意味着只有当前可见的行会被加载和渲染&#xf…

HarmonyOS NEXT中怎么理解HAR、HAP、HSP、App的关系

文章目录 一、HAR1.1 简介1.2 使用场景1.3 约束限制 二、HAP2.1 简介2.2 使用场景2.3 约束限制 三、HSP3.1 简介3.2 使用场景3.3 约束限制 四、小结 一、HAR 1.1 简介 HAR&#xff08;Harmony Archive&#xff09;是静态共享包&#xff0c;可以包含代码、C库、资源和配置文件…

backtracking Leetcode 回溯算法题

77.组合 第一个位置选择有 n 种&#xff0c;接下来每个位置只能在前面选择数字的后面选&#xff0c;所以有了 beg 参数&#xff0c;才能保持不重复 剪枝&#xff1a;res.size (n - beg 1) < k , 已有答案的长度 剩余所有未选择的个数 都小于最终答案长度了 就没有必要尝…

Unity类银河恶魔城学习记录13-1 p142 Save system源代码

Alex教程每一P的教程原代码加上我自己的理解初步理解写的注释&#xff0c;可供学习Alex教程的人参考 此代码仅为较上一P有所改变的代码 【Unity教程】从0编程制作类银河恶魔城游戏_哔哩哔哩_bilibili FileDataHandler.cs using System; using System.IO; using UnityEngine; p…

数据结构学习记录

数据结构 数组 & 链表 相连性 | 指向性 数组可以迅速定位到数组中某一个节点的位置 链表则需要通过前一个元素指向下一个元素&#xff0c;需要前后依赖顺序查找&#xff0c;效率较低 实现链表 // head > node1 > node2 > ... > nullclass Node {constructo…

基于springboot+vue+Mysql的社区维修平台

开发语言&#xff1a;Java框架&#xff1a;springbootJDK版本&#xff1a;JDK1.8服务器&#xff1a;tomcat7数据库&#xff1a;mysql 5.7&#xff08;一定要5.7版本&#xff09;数据库工具&#xff1a;Navicat11开发软件&#xff1a;eclipse/myeclipse/ideaMaven包&#xff1a;…

软件产品许可证书 Licence 全流程研发(使用非对称加密技术,既安全又简单)

本篇博客对应的代码地址&#xff1a; Gitee 仓库地址&#xff1a;https://gitee.com/biandanLoveyou/licence 源代码百度网盘链接: https://pan.baidu.com/s/1_ZhdcENcrk2ZuL11hWDLTQ?pwdbmxi 提取码: bmxi 1、背景介绍 公司是做软件 SAAS 服务的&#xff0c;一般来说软件部…

分析SQL中的ON后面AND条件与WHERE后AND的区别及其应用场景

引言ON条件 - 连接条件 示例1 - ON条件用于连接表示例2 - ON中多个连接条件WHERE条件 - 数据过滤 示例3 - WHERE条件应用于连接结果区别与结合使用总结 引言 在SQL查询中&#xff0c;JOIN子句的ON条件和WHERE子句的AND条件都用于筛选数据&#xff0c;但它们的应用上下文和作用方…

RabbitMQ项目实战(一)

文章目录 RabbitMQ项目实战选择客户端基础实战 前情提要&#xff1a;我们了解了消息队列&#xff0c;RabbitMQ的入门&#xff0c;交换机&#xff0c;以及核心特性等知识&#xff0c;现在终于来到了激动人心的项目实战环节&#xff01;本小节主要介绍通过Spring Boot RabbitMQ S…

AppsFlyer 接入更新

SDK文档 最新的 SDK 已经支持了 UPM 的接入方式&#xff0c;直接输入链接就可以安装好&#xff0c; 只需要 resolve 通过然后就可以使用了。

盒子模型和圆角边框的属性

一、标准盒子模型 content padding border margin 定义 width 和 height 时&#xff0c;参数值不包括 border 和 padding 二、怪异盒子模型 能不能实现怪异盒子模型全看属性 box-sizing&#xff0c;box-sizing 属性的取值可以为 content-box 或 border-box。 content-b…

CentOS 7 中时间快了 8 小时

1.查看系统时间 1.1 timeZone显示时区 [adminlocalhost ~]$ timedatectlLocal time: Mon 2024-04-15 18:09:19 PDTUniversal time: Tue 2024-04-16 01:09:19 UTCRTC time: Tue 2024-04-16 01:09:19Time zone: America/Los_Angeles (PDT, -0700)NTP enabled: yes NTP synchro…

DRF分页接口

DRF分页接口 目录 DRF分页接口PageNumberPagination&#xff08;基本分页类&#xff09;LimitOffsetPagination&#xff08;偏移分类)CursorPagination&#xff08;游标分页&#xff09; 实战 PageNumberPagination&#xff08;基本分页类&#xff09; 特点 基于页码的分页方式…

CS信息系统建设和服务能力评估申报知识点

代科技快速发展&#xff0c;云计算、大数据、物联网、移动互联网等新一代信息技术发展迅速&#xff0c;信息化服务模式正经历着重大的变化。而CS信息系统建设和服务能力评估是反映信息系统建设和服务提供者的能力水平的一个证书&#xff0c;现在许多企业都在办理这个资质。那么…

2021年全国大学生电子设计竞赛D题——基于互联网的摄像测量系统(三)

13 测试方案和测量结果 测量一个边长为1米的正方形&#xff0c;取三个顶点分别作为O、A、B点。 在O点上方&#xff0c;用细线悬挂激光笔&#xff0c;激光笔常亮向下指示&#xff0c;静止时激光笔的光点和O点重合。 将两个D8M摄像头子卡插到DE10-Nano开发板上&#xff0c;放…

对象生命周期:Transient(瞬态)、Scoped(范围)、Singleton(单例)

在对象生命周期和依赖注入&#xff08;DI&#xff09;的上下文中&#xff0c;特别是在使用如Microsoft.Extensions.DependencyInjection&#xff08;.NET Core的DI容器&#xff09;等框架时&#xff0c;对象的生命周期通常被划分为几个不同的类型&#xff1a;Transient&#xf…

MySQL Linux环境安装部署

目录 1、mysql安装包下载 2、安装mysql服务 3、启动mysql服务 4、登录mysql服务 1、mysql安装包下载 1、查看centos的版本 cat /etc/redhat-release 2、进入官网地址下载对应系统版本的安装包 地址&#xff1a;MySQL :: Download MySQL Yum Repository 2、安装mysql服务 …

MySQL运维实战之ProxySQL(9.3)使用ProxySQL实现读写分离

作者&#xff1a;俊达 proxysql读写分离主要通过mysql_query_rules表中的规则来实现。 下面是具体的配置步骤&#xff1a; 1 hostgroup配置 insert into mysql_servers (hostgroup_id, hostname, port, max_replication_lag) values ( 100, 172.16.121.236, 3380, 3);inser…

恒峰智慧科技-森林消防便捷泵:轻松应对火灾危机!

在广袤无垠的森林中&#xff0c;绿色是生命的象征&#xff0c;是自然的馈赠。然而&#xff0c;当火魔无情地吞噬这片生命的绿洲时&#xff0c;我们需要一种快速、高效、可靠的消防工具来守护这片绿色。此时&#xff0c;森林消防便捷泵应运而生&#xff0c;成为了守护森林安全的…