Changeset 4079 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2011-05-09T21:50:34+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r4065 r4079 280 280 * @param scale The scale to use. 281 281 */ 282 p rivatevoid zoomTo(EastNorth newCenter, double newScale) {282 public void zoomTo(EastNorth newCenter, double newScale) { 283 283 Bounds b = getProjection().getWorldBoundsLatLon(); 284 284 CachedLatLon cl = new CachedLatLon(newCenter); -
trunk/src/org/openstreetmap/josm/gui/layer/WMSLayer.java
r4065 r4079 421 421 new BookmarkWmsAction(), 422 422 SeparatorLayerAction.INSTANCE, 423 new ZoomToNativeResolution(), 423 424 new StartStopAction(), 424 425 new ToggleAlphaAction(), … … 785 786 } 786 787 788 private class ZoomToNativeResolution extends AbstractAction { 789 790 public ZoomToNativeResolution() { 791 super(tr("Zoom to native resolution")); 792 } 793 794 @Override 795 public void actionPerformed(ActionEvent e) { 796 Main.map.mapView.zoomTo(Main.map.mapView.getCenter(), 1 / info.getPixelPerDegree()); 797 } 798 799 } 800 787 801 private void cancelGrabberThreads(boolean wait) { 788 802 requestQueueLock.lock();
Note:
See TracChangeset
for help on using the changeset viewer.