var mod_showCoords_map = null; var mod_showCoords_win = null; var mod_showCoords_elName = "showCoords"; var mod_showCoords_frameName = ""; var mod_showCoords_img_on = new Image(); mod_showCoords_img_on.src = ""; var mod_showCoords_img_off = new Image(); mod_showCoords_img_off.src = ""; var mod_showCoords_img_over = new Image(); mod_showCoords_img_over.src = ""; function init_mod_showCoords(ind){ mb_button[ind] = document.getElementById(mod_showCoords_elName); mb_button[ind].img_over = mod_showCoords_img_over.src; mb_button[ind].img_on = mod_showCoords_img_on.src; mb_button[ind].img_off = mod_showCoords_img_off.src; mb_button[ind].status = 0; mb_button[ind].elName = mod_showCoords_elName; mb_button[ind].fName = mod_showCoords_frameName; mb_button[ind].go = new Function ("mod_showCoords_run()"); mb_button[ind].stop = new Function ("mod_showCoords_disable()"); mod_showCoords_map = getMapObjByName(mod_showCoords_target); } function mod_showCoords_run(){ var el = mod_showCoords_map.getDomElement(); el.onmousemove = mod_showCoords_display; el.onclick = mod_showCoords_click; } function mod_showCoords_disable(){ var el = mod_showCoords_map.getDomElement(); el.onmousemove = null; el.onclick = null; window.status = ""; } function mod_showCoords_click(e){ mod_showCoords_win = window.open("","","width=150, height=100"); mod_showCoords_win.document.open("text/html"); mod_showCoords_map.getMousePos(e); var pos = makeClickPos2RealWorldPos(mod_showCoords_target, clickX, clickY); mod_showCoords_win.document.write((Math.round(pos[0]*100)/100) + " / " + (Math.round(pos[1]*100)/100)); mod_showCoords_win.document.close(); mod_showCoords_win.focus(); } function mod_showCoords_display(e){ mod_showCoords_map.getMousePos(e); var pos = makeClickPos2RealWorldPos(mod_showCoords_target, clickX, clickY); window.status = pos[0] + " / " + pos[1]; }