首页 前端知识 (Echarts)引入地图报错“Map china not exists. The GeoJSON of the map must be provided”

(Echarts)引入地图报错“Map china not exists. The GeoJSON of the map must be provided”

2024-02-24 15:02:46 前端知识 前端哥 931 1 我要收藏

(Echarts)引入地图报错“Map china not exists. The GeoJSON of the map must be provided”

在这里插入图片描述

原因: echarts版本过高,官方在5+版本中移除了echarts/map/china.js文件

法一

import chinaMap from '@/assets/json/china.json'

mounted() {
  echarts.registerMap('china', { geoJSON: chinaMap })
},

法二

第一步:下载低版本的echarts@4.1

npm ls echarts  // 查看自己的echarts版本
npm install echarts@4.1.0 --save  //下载低版本echats包含china.js

第二步:组件内直接引入china.js

import "echarts/map/js/china.js";

解决参考:https://blog.csdn.net/qq_40573810/article/details/119104840?spm=1001.2101.3001.6650.3&utm_medium=distribute.pc_relevant.none-task-blog-2~default~OPENSEARCH~Rate-3-119104840-blog-103534852.pc_relevant_aa&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2~default~OPENSEARCH~Rate-3-119104840-blog-103534852.pc_relevant_aa&utm_relevant_index=4

特别鸣谢:https://blog.csdn.net/weixin_45371976/article/details/128470702

转载请注明出处或者链接地址:https://www.qianduange.cn//article/2626.html
标签
评论
发布的文章

【jQuery详细介绍】

2024-03-10 11:03:26

jQuery核心函数

2024-03-10 11:03:10

vue echarts GL3d中国地图

2024-03-10 11:03:09

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!