From 4cc0356d8aeb7d4404a0f878057cbdc9901a3473 Mon Sep 17 00:00:00 2001 From: Serge Noiraud Date: Sun, 21 Mar 2010 15:24:52 +0000 Subject: [PATCH] GeoView : Issue 3749 : Pin positions drift with zoom svn: r14890 --- src/plugins/view/geoview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/view/geoview.py b/src/plugins/view/geoview.py index d5fa48ce3..99f71fabe 100644 --- a/src/plugins/view/geoview.py +++ b/src/plugins/view/geoview.py @@ -1958,7 +1958,7 @@ class GeoView(HtmlView): ipath = os.path.join(const.ROOT_DIR, 'images/22x22/', '%s.png' % value ) upath = urlparse.urlunsplit(('file', '', 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) def _show_title(self, title):