Changeset 9947 in josm for trunk/src/org


Ignore:
Timestamp:
2016-03-07T20:12:38+01:00 (8 years ago)
Author:
wiktorn
Message:

Provide additional zoom levels from zoom slider.

Move maximum zoom to bigger scale (closer to the ground).
Closes: #12594

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java

    r9946 r9947  
    16381638
    16391639    /**
    1640      * Get a max scale for projection that describes world in 256 pixels
     1640     * Get a max scale for projection that describes world in 1/512 of the projection unit
    16411641     * @return max scale
    16421642     */
     
    16461646            world.maxNorth-world.minNorth,
    16471647            world.maxEast-world.minEast
    1648         )/256;
     1648        )/512;
    16491649    }
    16501650}
Note: See TracChangeset for help on using the changeset viewer.