Changeset 21477 in osm for applications/editors/josm/plugins/wms-turbo-challenge2
- Timestamp:
- 2010-05-28T08:00:04+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/wms-turbo-challenge2
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wms-turbo-challenge2/build.xml
r21187 r21477 66 66 <attribute name="Plugin-Description" value="Drive a race car from point A to point B over aerial imagery, leave cacti behind."/> 67 67 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WMS_Racer"/> 68 <attribute name="Plugin-Mainversion" value="3 096"/>68 <attribute name="Plugin-Mainversion" value="3252"/> 69 69 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 70 70 </manifest> -
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.