Changeset 21477 in osm for applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge
- Timestamp:
- 2010-05-28T08:00:04+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java ¶
r19990 r21477 16 16 package wmsturbochallenge; 17 17 18 import org.openstreetmap.josm.gui.MapView; 18 import java.awt.Graphics; 19 import java.awt.Graphics2D; 20 import java.awt.Point; 21 import java.awt.image.BufferedImage; 22 19 23 import org.openstreetmap.josm.data.ProjectionBounds; 20 24 import org.openstreetmap.josm.data.coor.EastNorth; 21 22 import java.awt.Point; 23 import java.awt.Graphics; 24 import java.awt.Graphics2D; 25 import java.awt.image.BufferedImage; 25 import org.openstreetmap.josm.gui.MapView; 26 26 27 27 class fake_map_view extends MapView { … … 37 37 38 38 public fake_map_view(MapView parent, double scale) { 39 super(null); //TODO MapView constructor contains registering listeners and other code, that probably shouldn't be called in fake map view 39 40 this.parent = parent; 40 41 this.scale = scale;
Note:
See TracChangeset
for help on using the changeset viewer.