Changeset 35182 in osm for applications/editors/josm/plugins
- Timestamp:
- 2019-10-10T17:28:47+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/importvec
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/importvec/build.xml
r34520 r35182 4 4 <property name="commit.message" value="Remove the action, add importing SVG to File/Open"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="14 153"/>6 <property name="plugin.main.version" value="14960"/> 7 7 8 8 <property name="plugin.author" value="Upliner"/> -
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/SvgImportTask.java
r35074 r35182 75 75 } 76 76 Node nd = new Node(projection.eastNorth2latlon(center.add(x * scale, -y * scale))); 77 if (nd. getCoor().isOutSideWorld()) {77 if (nd.isOutSideWorld()) { 78 78 throw new IOException("Shape goes outside the world"); 79 79 }
Note:
See TracChangeset
for help on using the changeset viewer.