2016-08-30 61 views
0

我想顯示谷歌地圖和我使用此代碼:情節谷歌地圖爲背景

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

看看documentation of imshow(),特別是它的origin參數,它確定數組的[0,0]索引在圖中的位置。

線必須是:

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