Changeset 28891 in osm for applications/editors/josm/plugins/importvec
- Timestamp:
- 2012-11-03T10:48:32+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/importvec
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/importvec/build.xml
r28889 r28891 32 32 <property name="commit.message" value="Commit message"/> 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/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVectorAction.java
r28889 r28891 30 30 import org.openstreetmap.josm.data.osm.Way; 31 31 import org.openstreetmap.josm.data.projection.Projection; 32 import org.openstreetmap.josm.data.projection.Projection Info;32 import org.openstreetmap.josm.data.projection.Projections; 33 33 import org.openstreetmap.josm.gui.ExtendedDialog; 34 34 import org.openstreetmap.josm.gui.PleaseWaitRunnable; … … 144 144 } 145 145 146 Projection projection = Projection Info.getProjectionByCode("EPSG:3857"); // Mercator146 Projection projection = Projections.getProjectionByCode("EPSG:3857"); // Mercator 147 147 EastNorth center; 148 148 double scale;
Note:
See TracChangeset
for help on using the changeset viewer.