我想显示Google地图,我使用此代码:
url = "http://maps.googleapis.com/maps/api/staticmap?center=-30.027489,-51.229248&size=800x800&zoom=14&sensor=false"
im = Image.open(cStringIO.StringIO(urllib2.urlopen(url).read()))
plt.imshow(im)
plt.show()
我不明白
答案 0 :(得分:1)
查看documentation of imshow()
,特别是origin
参数,该参数确定数组的[0,0]索引在图中的位置。
该行必须是:
plt.imshow(im, origin='upper')