其他分享
首页 > 其他分享> > pyecharts 实现画地图 足迹 旅游

pyecharts 实现画地图 足迹 旅游

作者:互联网

import random
from pyecharts.charts import Map
from pyecharts import options as opts
from pyecharts.faker import Faker
# map= (
#     Map().add('旅游图',[list(i) for i in zip(Faker.country,Faker.values())])
#
# )
# map.set_global_opts(
#             title_opts=opts.TitleOpts(title="连续型数据"),
#             visualmap_opts=opts.VisualMapOpts(max_= 662000),
#         )
# map.render('ditu.html')



arr = []
s = ""
with open("../走过的地区.txt","r") as f:
    for i in f.readlines():
        i = i.replace("\n","").replace(" ","")
        if i:
            s = s+i+"\n"
        temp = []

        temp.append(i)
        temp.append(random.randint(0,50))
        arr.append(temp)

map=(
    Map()
    .add('足迹',arr,maptype='china',is_selected=True,is_map_symbol_show=False,zoom=1.2)
    .set_series_opts(label_opts=opts.LabelOpts(is_show=True))
    .set_global_opts(
            visualmap_opts=opts.VisualMapOpts(max_=50),
            title_opts=opts.TitleOpts(title=s))
)
map.render('../足迹.html')

print("地图已经绘制完成......")
wait = input("")
View Code

 

标签:map,足迹,pyecharts,temp,title,地图,import,opts
来源: https://www.cnblogs.com/3-wusen/p/14394858.html