Changeset 34570 in osm for applications/editors/josm/plugins
- Timestamp:
- 2018-08-18T20:52:57+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/wms-turbo-challenge2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wms-turbo-challenge2/build.xml
r33837 r34570 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1 2643"/>7 <property name="plugin.main.version" value="14153"/> 8 8 9 9 <property name="plugin.author" value="Andrzej Zaborowski"/> -
applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/GameWindow.java
r33837 r34570 27 27 import javax.swing.Timer; 28 28 29 import org.openstreetmap.josm.Main;30 29 import org.openstreetmap.josm.data.ProjectionBounds; 31 30 import org.openstreetmap.josm.data.coor.EastNorth; … … 33 32 import org.openstreetmap.josm.data.gpx.ImmutableGpxTrack; 34 33 import org.openstreetmap.josm.data.gpx.WayPoint; 34 import org.openstreetmap.josm.data.projection.ProjectionRegistry; 35 35 import org.openstreetmap.josm.gui.MainApplication; 36 36 import org.openstreetmap.josm.gui.layer.GpxLayer; … … 108 108 * have a fix and add any distortions. */ 109 109 110 segment.add(new WayPoint( Main.getProjection().eastNorth2latlon(110 segment.add(new WayPoint(ProjectionRegistry.getProjection().eastNorth2latlon( 111 111 new EastNorth(lon, lat)))); 112 112 }
Note:
See TracChangeset
for help on using the changeset viewer.