不使用AMap.DistrictSearch,通过poi数据绘制省市县区块

个人申请高德地图key时无法使用AMap.DistrictSearch,可以通过poi数据绘制省市县区块

1.进入POI数据网站找到需要的省市县,下载对应的GeoJson文件 ,此处为poi数据网站链接

2.​

处理geoJson数据,可以直接新建json文件,将下载的geojson内容复制进入也可以使用。也可以在项目内webpack配置文件中修改,同时确保安装了json-loader。我一般都用前者就足够了

npm install json-loader --save-dev

module: {
  rules: [
    {
      test: /\.geojson$/,
      loader: 'json-loader'
    }
  ]
}

.3.将文件放入项目内,从组件中引入json文件

import areaList from "../../map/beijing.json";

4.获取点位坐标

//绘制地图区域
             mapArea(){
                let _this = this
                let polygon;
                var points=[];
                areaList.features.forEach(i=>{
                    points=[[]];
                    i.geometry.coordinates[0][0].forEach(item=>{
                            points[0].push(new AMap.LngLat(item[0],item[1]));
                            // points.push([item[0],item[1]]);
                    })
                })
                return points
            },

5.生成地图

initMap(){
                let _this = this;
                let mask = this.mapArea()
                _this.map = new AMap.Map('mapBox', {
                        mask: mask,
                        center: [110.051784, 34.74073],
                        expandZoomRange: true,
                        disableSocket: true,
                        viewMode: '3D',
                        showLabel: true,
                        labelzIndex: 130,
                        zoom: 10.2,
                        layers: [
                            new AMap.TileLayer.RoadNet({
                            }),
                            new AMap.TileLayer.Satellite()
                        ]
                    });

                    var maskerIn = new AMap.Marker({
                        position: [116.501415, 39.926055],
                        map: _this.map
                    })
                    var maskerOut = new AMap.Marker({//区域外的不会显示
                        position: [117.001415, 39.926055],
                        map: _this.map
                    })
                    var height = -5000;
                    var color = '#0088ffcc';//rgba
                    // 添加描边
                        new AMap.Polyline({
                            path: mask[0],
                            strokeColor: '#99ffff',
                            strokeWeight: 6,
                            map: _this.map
                        })
            },
相关推荐
xiao-xiang8 分钟前
jenkins-通过api获取所有job及最新build信息
前端·servlet·jenkins
C语言魔术师24 分钟前
【小游戏篇】三子棋游戏
前端·算法·游戏
小周不摆烂30 分钟前
探索JavaScript前端开发:开启交互之门的神奇钥匙(二)
javascript
匹马夕阳2 小时前
Vue 3中导航守卫(Navigation Guard)结合Axios实现token认证机制
前端·javascript·vue.js
你熬夜了吗?2 小时前
日历热力图,月度数据可视化图表(日活跃图、格子图)vue组件
前端·vue.js·信息可视化
我想学LINUX3 小时前
【2024年华为OD机试】 (A卷,100分)- 微服务的集成测试(JavaScript&Java & Python&C/C++)
java·c语言·javascript·python·华为od·微服务·集成测试
screct_demo3 小时前
詳細講一下在RN(ReactNative)中,6個比較常用的組件以及詳細的用法
javascript·react native·react.js
桂月二二8 小时前
探索前端开发中的 Web Vitals —— 提升用户体验的关键技术
前端·ux
CodeClimb9 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
沈梦研9 小时前
【Vscode】Vscode不能执行vue脚本的原因及解决方法
ide·vue.js·vscode