• 百度地图,地市区域描边


    描边首先需要各个点的经纬度数据
    json数据下载

    在这里插入图片描述
    直接复制粘贴进入页面ctrl+s保存就可以了。
    如果需要某省中的各个地市描边可以点击这个省的进行下载,这里以山东为例,我是先下载了山东的json数据,但是发现只有山东省下各个市的描边,于是又下了中国的数据,把山东的再复制到山东省json里。在这里插入图片描述
    json粘贴后效果。文件名为370000_full.json

    js描边代码(map 是地图实例,自己看着改名)

    //根据地址编码描边(以adcode=370100进行演示。即济南市描边)
    function getLngLatOutline(adcode) {
    	//解析json(这里使用了jq解析json,这里可以根据自己项目情况进行修改)
        $.getJSON(`${prcs}/js/unicom/assetMarket/baiduMap/370000_full.json`, function(data) {
            //第一层是要画几块区域
            for(let d0 of data.features){
                if (adcode==d0.properties.adcode){
                    console.log(`第一层,地市名:${d0.properties.name},需要描边数量${d0.geometry.coordinates.length}`)
                    //清空覆盖物(不必要,自己看项目情况要还是不要)
                    map.clearOverlays();
                    //添加中心标点(不必要,自己看项目情况要还是不要,这一行是项目封装的,有需要自己写一下,这里不赘述)
                    addMaker(d0.properties.center[0], d0.properties.center[1], true, d0.properties["name"], d0.properties["name"]);
                    //视野跳转至中心(不必要,自己看项目情况要还是不要)
                    map.flyTo(new BMapGL.Point(d0.properties.center[0], d0.properties.center[1]), 12);
    
                    //第二层中的[0]是描边具体经纬度。
                    for(let d1 of d0.geometry.coordinates){
                        console.log("第二层,经纬度点位数量"+d1[0].length)
                       //经纬度描边集合
                        let pointLngLatList=d1[0].map(lngLat=>{
                            return new BMapGL.Point(lngLat[0],lngLat[1]);
                        })
                        var polygon = new BMapGL.Polygon(pointLngLatList, {strokeColor:"blue", strokeWeight:2, strokeOpacity:0.5});  //创建多边形描边
                        map.addOverlay(polygon);//增加多边形描边
    
                    }
    
                }
            }
        })
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    js百度地图标点,鼠标悬浮展示信息(与描边无关)

    /**
     * 增加标记(与描边无关)
     * @param lng 经度
     * @param lat 纬度
     * @param flag 是否增加信息提示窗口
     * @param width 窗口宽度
     * @param height 窗口高度
     * @param title 窗口标题
     * @param message 窗口显示内容
     */
    function addMaker(lng, lat, flag, title, message) {
        let point = new BMapGL.Point(lng, lat);
        var marker= new BMapGL.Marker(point);  // 创建标注
        map.addOverlay(marker);
        //字母数字个数
        let shuziCount=shuzi(title);
        if (flag) {
            // 将标注添加到地图中
            let opts = {
                title: title, // 信息窗口标题
                width : (title.length-shuziCount)*16+(shuziCount*10),// 信息窗口宽度
                offset: new BMapGL.Size(4, -24)//设置偏移量
            }
            let messStr=`
    ${message}
    ` // 创建信息窗口对象 let infoWindow = new BMapGL.InfoWindow(messStr, opts); //鼠标移入开启 marker.addEventListener("mouseover", function () { map.openInfoWindow(infoWindow, point); }); //鼠标移出关闭 marker.addEventListener("mouseout", function () { //关闭信息窗口 map.closeInfoWindow(); }); } return marker; } //统计英文数字字符数量 function shuzi(words) { let sum=0; for (let i = 0; i < words.length; i++) { let c = words.charAt(i); if (c.match(/[a-zA-Z0-9]/)) { sum++; } } return sum; }
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51

    效果:
    在这里插入图片描述
    在这里插入图片描述

  • 相关阅读:
    使用Ansible Template模块进行配置文件管理
    Oracle数据库:创建和删除视图view,简单和复杂视图,内建视图,topN分析,oracle分页查询
    vue.js实例选项
    《西线无战事》我们才刚开始热爱生活,却不得不对一切开炮
    C语言中volatile修饰变量,及其余const的区别
    vue3硅谷甄选01 | 使用vite创建vue3项目及项目的配置 环境准备 ESLint配置 prettier配置 husky配置 项目集成
    [附源码]Python计算机毕业设计Django惠农微信小程序论文
    基于SSM的北京集联软件科技有限公司信息管理系统
    Azure Data Factory(六)数据集类型为Dataverse的Link测试
    Linux基本指令及其使用
  • 原文地址:https://blog.csdn.net/qq_43840143/article/details/134530999