点出现在地图google python代码上

时间:2011-04-09 16:26:24

标签: python google-maps webpage point pygmaps

我正在使用python开发地图(谷歌地图)并在特定位置添加一些点。搜索后我发现可以使用 pygmaps 完成。所以我使用pip安装它,然后我编写了这段代码,我需要添加点并打开地图的网页,找到那里的点。

import pygmaps 
import webbrowser 
mymap = pygmaps.maps(37.428, -122.145, 16)
mymap.setgrids(37.42, 37.43, 0.001, -122.15, -122.14, 0.001)
mymap.addpoint(37.427, -122.145, "#0000FF") 
mymap.addradpoint(37.429, -122.145, 95, "#FF0000")
path = [(37.429, -122.145),(37.428, -122.145),(37.427, -122.145),(37.427, -122.146),(37.427, -122.146)] mymap.addpath(path,"#00FF00") 
mymap.draw('./mymap.draw.html') 
url = url = './mymap.draw.html'
webbrowser.open_new_tab(url) 

我没有看到分数,只有地图。

1 个答案:

答案 0 :(得分:3)

更改

mymap.draw('./mymap.draw.html') 
url = url = './mymap.draw.html'

mymap.draw('mymap.draw.html') 
url = 'mymap.draw.html'

为我工作。

编辑:添加了屏幕截图。

enter image description here