【发布时间】:2017-06-04 06:50:38
【问题描述】:
我正在使用 Google 地图使用 Python 捕获卫星图像。 我关注了帖子:http://stackoverflow.com/questions/7490491/capture-embedded-google-map-image-with-python-without-using-a-browser。但是,与直接从浏览器查看相比,Python 中的图像分辨率较低。
但从浏览器查看相同位置的视图具有更高的分辨率(尽管不是完全相同的缩放范围):
谷歌地图API的参数如下:
'center': position,
'zoom': str(zoom),
'size': '%dx%d' % (largura, alturaplus),
'maptype': 'satellite',
'sensor': 'false',
'scale': scale
是否有调整分辨率的参数? 非常感谢!
【问题讨论】:
标签: python google-maps resolution satellite