gpt4 book ai didi

python - 属性错误 : Map object has no attribute 'create_map'

转载 作者:太空宇宙 更新时间:2023-11-04 02:30:06 25 4
gpt4 key购买 nike

我需要一些帮助,我尝试在我的代码中使用 folium 但不断收到此错误消息:

Attribute Error : Map object has no attribute 'create_map'

这是我得到的(列表中没有 create_map):

dir(folium.Map)

['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__',
'__format__', '__ge__', '__getattribute__', '__gt__', '__hash__',
'__init__', '__init_subclass__', '__le__', '__lt__', '__module__',
'__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',
'__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__',
'_get_self_bounds', '_repr_html_', '_repr_png_', '_to_png', 'add_child' ,
'add_children', 'add_tile_layer', 'add_to', 'choropleth', 'fit_bounds',
'get_bounds', 'get_name', 'get_root', 'render', 'save', 'to_dict', 'to_json']

代码是:

import folium
map_osm = folium.Map(location=[45.5236, -122.6750])
map_osm.create_map(path='osm.html')

附言:folium 版本 0.5.0//Python 3.6.4

最佳答案

您可以使用save 方法将 map 保存为HTML。

例如

map_osm.save('osm.html')

dir(folium.Map) 的输出中也提到了它

enter image description here

关于python - 属性错误 : Map object has no attribute 'create_map' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49425270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com