Changeset 28891 in osm for applications/editors/josm/plugins/buildings_tools
- Timestamp:
- 2012-11-03T10:48:32+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/buildings_tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/buildings_tools/build.xml
r28888 r28891 32 32 <property name="commit.message" value="BuildingTools: update to current JOSM"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="55 48"/>34 <property name="plugin.main.version" value="5554"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/buildings_tools/src/buildings_tools/BuildingsToolsPlugin.java
r28888 r28891 5 5 import org.openstreetmap.josm.data.coor.LatLon; 6 6 import org.openstreetmap.josm.data.projection.Projection; 7 import org.openstreetmap.josm.data.projection.Projection Info;7 import org.openstreetmap.josm.data.projection.Projections; 8 8 import org.openstreetmap.josm.gui.IconToggleButton; 9 9 import org.openstreetmap.josm.gui.MainMenu; … … 13 13 14 14 public class BuildingsToolsPlugin extends Plugin { 15 public static Projection proj = Projection Info.getProjectionByCode("EPSG:3857"); // Mercator15 public static Projection proj = Projections.getProjectionByCode("EPSG:3857"); // Mercator 16 16 17 17 public static EastNorth latlon2eastNorth(LatLon p) {
Note:
See TracChangeset
for help on using the changeset viewer.