从here和here的第一个示例开始,我尝试使用pyplot
和mplleaflet
绘制固定大小< / 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)
代码运行正常,但是当新的传单选项卡打开时,我什么都没有: