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

 

上一篇:5种设置ASP.NET Core应用程序URL的方法


下一篇:公众号、网页点击链接