Hi Luca,

this is a bug in the seguent function:

(in /javascript/zoombox.js file)

function displayCoordinates() {
    var mpoint = getCoords(moveX, moveY, false);
    //var mpoint = getCoords(moveX, moveY, true);
   
    // Round values (function 'roundN()' in 'measure.js')
    var rfactor = 0;
    var px = isNaN(mpoint.x) ? '' : roundN(mpoint.x, rfactor);
    var py = isNaN(mpoint.y) ? '' : roundN(mpoint.y, rfactor);
   
    // Display in status bar
    /*
    var mapCoords = 'X: ' + px + '  Y: ' + py;
    window.status = mapCoords;
    */
   
    // Display in DIV over MAP
    $('#xcoord').html('X: ' + px); // + ' °';
    $('#ycoord').html('Y: ' + px); // + ' °';
}

change the last row

$('#ycoord').html('Y: ' + px); // + ' °';

in

$('#ycoord').html('Y: ' + py); // + ' °';


Bye
Walter






Luca Penasa ha scritto:
> im working to this webgis : 
> http://igpozzo.mpasol.it/lichgis/map.phtml?config=licheni
>
> as you can see the coordinates (on the bootom left of the page) points 
> to the same number...im working with pmapper 3.0... how can i solve 
> this?????
>
> Thanks
> luca penasa
>  
>  
>  --
>  Email.it, the professional e-mail, gratis per te: http://www.email.it/f
>  
>  Sponsor:
>  Prestiti e Finanziamenti con un semplice click, scopri subito se sei 
> finanziabile cliccando qui
>  Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=2910&d=24-4
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> pmapper-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/pmapper-users
>
>   

-- 
Please no  .doc, .xls, .ppt, .dwg:
https://www.faunalia.it/dokuwiki/doku.php?id=public:OpenFormats

Walter Lorenzetti
email+jabber: [EMAIL PROTECTED]
www.faunalia.it
Cell: (+39) 347-6597931  Tel+Fax: (+39) 0587-213742
Piazza Garibaldi 5 - 56025 Pontedera (PI), Italy


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
pmapper-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pmapper-users

Reply via email to