GeoView : Issue 3749: better way to place the icon at the same place as googlemap do.

svn: r14892
This commit is contained in:
Serge Noiraud 2010-03-21 15:58:25 +00:00
parent 4cc0356d8a
commit 7af6dd4490

View File

@ -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]);" % upath)
self.mapview.write("my_marker.setIcon(\"%s\",[22,22],[0,22]);" % upath)
self.mapview.write("my_marker.setShadowIcon(\"%s\",[0,0]);" % upath)
def _show_title(self, title):