绘制谷歌地图作为背景

时间:2016-08-30 14:37:04

标签: python image google-maps url

我想显示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()

这给了我:enter image description here

我不明白

1 个答案:

答案 0 :(得分:1)

查看documentation of imshow(),特别是origin参数,该参数确定数组的[0,0]索引在图中的位置。

该行必须是:

plt.imshow(im, origin='upper')