Changeset 364


Ignore:
Timestamp:
Jun 9, 2021, 10:28:51 AM (3 years ago)
Author:
alloc
Message:

Fixed: Coordinates display

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/webserver/js/leaflet.control.coordinates.js

    r361 r364  
    88                    container = L.DomUtil.create('div', name + ' webmap-control');
    99       
    10                 container.innerHTML = "Mouse pos: -E / - N<br/>Last click: -E / - N"
     10                container.innerHTML = "Mouse pos: - E / - N<br/>Last click: - E / - N"
    1111                L.DomEvent.on (container, 'mousemove', L.DomEvent.stopPropagation);
    1212
     
    4646        _formatCoord: function(latlng) {
    4747                if (latlng == false)
    48                         return "-E / - N";
     48                        return "- E / - N";
    4949                else
    5050                        return "" +
    51                                 Math.abs(latlng.lng).toFixed(0) + (latlng.lng>=0 ? " E" : " W") + " / " +
    52                                 Math.abs(latlng.lat).toFixed(0) + (latlng.lat>=0 ? " N" : " S");
     51                                Math.abs(latlng.lat).toFixed(0) + (latlng.lat>=0 ? " E" : " W") + " / " +
     52                                Math.abs(latlng.lng).toFixed(0) + (latlng.lng>=0 ? " N" : " S");
    5353        },
    5454       
Note: See TracChangeset for help on using the changeset viewer.