访问我的github仓库outer_resources中的USA.json文件:
big_data_analysis/outer_resources/USA.json at main · Just-A-Freshman/big_data_analysis
保存到当前目录下;
随后运行代码:
from pyecharts import options as opts
from pyecharts.charts import Map
from pyecharts import options as opts
import json# 如果想要使用外部js地图的话,无需注册地图,直接指定maptype="美国"即可
# 此处演示仅仅是早期无法用maptype="美国"来获取美国地图,因此采用的一种方法# 读取 USA.json 文件
with open(r"USA.json", 'r', encoding='utf-8') as f:usa_data = json.load(f)adjust = {"Alaska": {"left": -120, "top": 25, "width": 15}
}m = Map()# 注册地图
m.add_js_funcs(f"echarts.registerMap('USA', {usa_data}, {adjust});")# 添加系列数据
m.add("美国", [("California", 1)], "USA")# 设置全局选项
m.set_global_opts(title_opts=opts.TitleOpts(title="美国地图"),visualmap_opts=opts.VisualMapOpts(max_=10)
)# 渲染到 HTML 文件
m.render("USA.html")