Python新秀在这里。我正在为地点制作谷歌地图API请求,我找回一个列表,然后我想映射点(纬度,长度)。我使用'mapit'脚本完成了这项任务,但我希望能够在folium((即)layercontrol等中使用更多功能)。我编写的'for'循环只映射了它创建的列表中的最后一项。我明白为什么会这样做,但不明白如何在一层中映射所有这些。感谢任何反馈
import folium
import pandas
import urllib3.request
import json, requests
url = "https://maps.googleapis.com/maps/api/place/textsearch/json?"
google_api = "mykey"
#google API request code
qry = input('Search query: ')
r = requests.get(url + 'query=' + qry + '&key=' + google_api)
response = r.json()
results = response['results']
for i in range(len(results)):
location = results[i]['geometry']['location']
lat = location['lat']
lng = location['lng']
nameP = results[i]['name']
latLong = []
latLong.append(tuple([lat,lng, nameP]))
print(latLong)
map = folium.Map(location=[39.712183, -104.998424], zoom_start=5)
point_layer = folium.FeatureGroup(name="Query Search")
point_layer.add_child(folium.CircleMarker(location=[lat, lng], radius=10,
popup=str(nameP) + " Lat: " + str(lat) + " , Long: " + str(lng),
tooltip=str(nameP) + " Lat: " + str(lat) + " , Long: " + str(lng),
fill=True, # Set fill to True
color='red',
fill_opacity=1.0))..add_to(Map)
map.add_child(point_layer)
map.add_child(folium.LayerControl())
map.save("Map1.html")
解决方案前的2个提示:
map
作为变量名。 map
是Python中的保留字。 Folium用户通常使用变量名称m
作为地图SyntaxError
。你在fill_opacity=1.0))..add_to(Map)
有2个点解决方案:您需要使用for循环在每个lat-long对上进行迭代,然后将它们组合在一个层上。还有其他方法可以在没有迭代的情况下完成此操作(例如geoJson),但在您的情况下,这是最简单的方法。检查以下代码:
import folium
m = folium.Map(location=[39.712183, -104.998424], zoom_start=5)
point_layer = folium.FeatureGroup(name="Query Search")
latLong = [(36.314292,-117.517516,"initial point"),
(40.041159,-116.153016,"second point"),
(34.014757,-119.821985,"third point")]
for lat,lng,nameP in latLong:
point_layer.add_child(folium.CircleMarker(location=[lat, lng], radius=10,
popup=str(nameP) + " Lat: " + str(lat) + " , Long: " + str(lng),
tooltip=str(nameP) + " Lat: " + str(lat) + " , Long: " + str(lng),
fill=True, # Set fill to True
color='red',
fill_opacity=1.0)).add_to(m)
m.add_child(point_layer)
m.add_child(folium.LayerControl())
m.save("Map1.html")
如果你想要一个更好看的工具提示或弹出窗口,请将文本插入带有Html的folium.Iframe中,如图所示here in the fancy popup section
地图: