GeoView : Issue 749 : Pin positions drift with zoom

svn: r14891
This commit is contained in:
Serge Noiraud 2010-03-21 15:26:47 +00:00
parent 6a020331e4
commit 90f27a4b06

View File

@ -1660,7 +1660,7 @@ class GeoView(HtmlView):
ipath = os.path.join(const.ROOT_DIR, 'images/22x22/', '%s.png' % value ) ipath = os.path.join(const.ROOT_DIR, 'images/22x22/', '%s.png' % value )
upath = urlparse.urlunsplit(('file', '', upath = urlparse.urlunsplit(('file', '',
URL_SEP.join(ipath.split(os.sep)), '', '')) URL_SEP.join(ipath.split(os.sep)), '', ''))
self.mapview.write("my_marker.setIcon(\"%s\",[22,22],[0,0]);" % upath) self.mapview.write("my_marker.setIcon(\"%s\",[22,22]);" % upath)
self.mapview.write("my_marker.setShadowIcon(\"%s\",[0,0]);" % upath) self.mapview.write("my_marker.setShadowIcon(\"%s\",[0,0]);" % upath)
def _show_title(self, title): def _show_title(self, title):