Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 675 Bytes

geo_echart_china_js.md

File metadata and controls

26 lines (19 loc) · 675 Bytes

pyecharts 代码 / 效果

from pyecharts import options as opts
from pyecharts.charts import Geo
from pyecharts.datasets import register_url

try:
    register_url("https://echarts-maps.github.io/echarts-china-counties-js/")
except Exception:
    import ssl

    ssl._create_default_https_context = ssl._create_unverified_context
    register_url("https://echarts-maps.github.io/echarts-china-counties-js/")

geo = (
    Geo()
    .add_schema(maptype="海淀区")
    .set_global_opts(title_opts=opts.TitleOpts(title="海淀区"))
    .render("geo_echart_china_js.html")
)
<iframe width="100%" height="800px" src="Geo/geo_echart_china_js.html"></iframe>