mymap.addpoint(1.29425, 103.8991,"#FF0000",'test')
在我在pygmaps中进行了以下更改后,我的代码位是什么
def addpoint(self, lat, lng, color = '#FF0000', title = None):
self.points.append((lat,lng,color[1:],title))
但是我仍然无法看到此地图上标记的点的标题:(
答案 0 :(得分:0)
你必须在pygmap.py
中再做一次更改更改
f.write('\t\ttitle: "no implimentation",\n')
要
f.write('\t\ttitle: "'+re.escape(str(title))+'",\n')
答案 1 :(得分:-1)
如果有人仍然需要帮助,我有一个解决方案。您还必须相应地更新drawpoints函数,然后更新drawpoint函数。这就是我的函数定义:
def drawpoints(self,f):
for point in self.points:
self.drawpoint(f,point[0],point[1],point[2],point[3])
def drawpoint(self,f,lat,lon,color,title):