English 中文(简体)
将图表绘制为映射中的弹出
原标题:Plotly chart as a popup in folium map

我试图用和几个选项 在一个标记中加上一个假的图解 来作为弹出, 但它们都没有为我工作过。

下面我试图添加一个简单的巧妙例子作为数字。

这是一条代码:

import plotly.express as px
import plotly
import json
import folium
geomap = folium.Map([19.715576, -99.20099], zoom_start=9, tiles="OpenStreetMap")

df = px.data.gapminder().query("country== Canada ")
fig = px.line(df, x="year", y="lifeExp", title= Life expectancy in Canada )
fig.update_layout(margin=dict(t=10,l=10,b=10,r=10))[enter image description here](https://i.sstatic.net/Mjnkh.png)

coor1= [19.742110608748604, -99.01751491998121] #marker position

与 Vega 第一:

figjson = json.loads(fig.to_json())
popup = folium.Popup(max_width=650)
folium.Vega(figjson, height=350, width=650).add_to(popup)
folium.Marker(coor1, popup=popup, icon=folium.Icon(color = "blue", prefix =  fa , icon =  plane ), tooltip= "airport").add_to(geomap)

现在用 Iframe :

fightml = fig.to_html(full_html = True, default_width = 200, default_height = 200)
html = fightml
iframe = folium.IFrame(html=html,width=500, height=300)
popup = folium.Popup(iframe, max_width=500)
folium.Marker(coor1, popup=popup, icon=folium.Icon(color = "blue", prefix =  fa , icon =  plane ), tooltip= "airport").add_to(geomap)

Both options have similar results to the first image. Another option with even weirder results is with plain html:

html = """
    <iframe """" + fightml + """" width="850" height="400"  frameborder="0">    
    """
popoup= folium.Popup(folium.Html(html, script=True))
folium.Marker(coor1, popup=popup, icon=folium.Icon(color = "blue", prefix =  fa , icon =  plane ), tooltip= "airport").add_to(geomap) 

"https://i.static.net/nc6mo.png" rel="没有跟随 noreferrer" >Results

谢谢你们

最佳回答

您可以在中使用 HTML 弹出, 所以保存您以 html 格式刻意创建的图形。 接下来, 装入已保存的文件, 并将其设置为用于的 IFrame 。 下一步, 在中设置弹出。 最后, 将其设置为 fuilum 弹出 。 我的方法是保存一次, 但可能还有其他更有效的方法 。

import plotly.express as px
import folium
import branca

df = px.data.gapminder().query("country== Canada ")
fig = px.line(df, x="year", y="lifeExp", title= Life expectancy in Canada )
fig.update_layout(margin=dict(t=30,l=10,b=10,r=10))
fig.write_html( /content/popup_map.html )

filepath =  popup_map.html 
with open(filepath , encoding= utf-8 ) as f:
    html = f.read()

coor1= [19.742110608748604, -99.01751491998121]
geomap = folium.Map([19.715576, -99.20099], zoom_start=9, tiles="OpenStreetMap")

iframe = branca.element.IFrame(html=html, width=500, height=300)
popup = folium.Popup(iframe, max_width=500)

folium.Marker([coor1[0],coor1[1]], popup=popup).add_to(geomap)

geomap

问题回答

您是否有机会用无图.to_ html完成此任务, 以使数字不必保存? 感谢您提前感谢 。 @ info: whatsthis





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签