Changeset 33220 in osm for applications/editors/josm/plugins/seachart
- Timestamp:
- 2017-04-09T13:39:36+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/seachart
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/build.xml
r32680 r33220 4 4 <property name="commit.message" value="[Seachart] Publish new release"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 0580"/>6 <property name="plugin.main.version" value="11858"/> 7 7 8 8 <property name="plugin.author" value="Malcolm Herring"/> -
applications/editors/josm/plugins/seachart/src/seachart/ChartImage.java
r32907 r33220 8 8 import java.awt.geom.Point2D; 9 9 import java.awt.geom.Point2D.Double; 10 import java.util.Collection; 11 import java.util.Collections; 10 12 11 13 import javax.swing.Action; … … 148 150 return RuleSet.ALL; 149 151 } 152 153 @Override 154 public Collection<String> getNativeProjections() { 155 return Collections.singletonList("EPSG:3857"); 156 } 150 157 }
Note:
See TracChangeset
for help on using the changeset viewer.