使用.add_artist()在传单中绘制圆圈

时间:2017-09-19 16:45:33

标签: python matplotlib leaflet plotly

herehere的第一个示例开始,我尝试使用pyplotmplleaflet绘制固定大小< / em>在地图上圈出来。

(&#34;固定尺寸&#34;,我的意思是这个圆圈不是标记,它不应该适应缩放级别,但是应该保持25米直径,无论缩放电平)。

这是我得到的:

import mplleaflet
import matplotlib.pyplot as plt
import matplotlib as mpl

fig, ax = plt.subplots()
x = 2.363561
y = 48.951918
r = 20
circle1 = mpl.patches.Circle((x,y), radius=r)
circle2= plt.Circle((x, y), r, color='r')

ax.add_artist(circle1)
ax.add_artist(circle2)

mplleaflet.show(fig=ax.figure)

代码运行正常,但是当新的传单选项卡打开时,我什么都没有:

enter image description here

0 个答案:

没有答案