Hi,<br><br>I keep running into this problem and it behaves different on both Firefox and IE.<br><br>I want to add an icon to the map based on where the user has clicked. I use the following procedure which I am hoping is correct since I have noticed it used before.<br><br>incidentViewer.prototype.ondblclick = function(e)<br>{<br>&nbsp;&nbsp;&nbsp; e = (e)?e:((event)?event:null);<br>&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; var aPixPos = this.adjustPixPosition( e.clientX, e.clientY );<br>&nbsp;&nbsp;&nbsp; var geoCoo = this.kaMap.pixToGeo( aPixPos[0], aPixPos[1] );<br>&nbsp;&nbsp;&nbsp; this.gX = geoCoo[0];<br>&nbsp;&nbsp;&nbsp; this.gY = geoCoo[1];<br>&nbsp;&nbsp;&nbsp; // send to server here<br>&nbsp; &nbsp; ...<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp; myKaMap.addObjectGeo( opener.iconFeatures, this.gY, this.gX, incident.img );<br>&nbsp; <br>}<br><br>The offset of the icon always ends up incorrect from what it should be. Is this the correct procedure?<br><br>Thanks,
 S.D.<br>