向OSMnx图添加一个点

时间:2018-03-24 03:21:15

标签: python matplotlib osmnx

我正在尝试在Jupyter笔记本中为现有的OSMnx图添加一个点

import osmnx as ox
import matplotlib.pyplot as plt

G = ox.graph_from_address('1600 Pennsylvania Ave NW, Washington, DC 20500', 
                          distance=500)

fig, ax = ox.plot_graph(G)

ax.scatter(-77.036498, 38.897270, c='red')

plt.show()

但是我的观点(-77.036498,38.897270)没有显示出来。有什么想法吗?

print (type(fig), type(ax))
<class 'matplotlib.figure.Figure'> <class 'matplotlib.axes._subplots.AxesSubplot'>

enter image description here

1 个答案:

答案 0 :(得分:3)

问题是ox.plot_graph会在您绘制点之前显示图表。请注意,如果您设置show=Falseox.plot_graph将默认关闭该数字。您需要将ox.plot_graph更改为:

fig, ax = ox.plot_graph(G, show=False, close=False)

希望以下图表是您想要的:

enter image description here