Ignore:
Timestamp:
2017-04-09T13:39:36+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 11858

Location:
applications/editors/josm/plugins/seachart
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/build.xml

    r32680 r33220  
    44    <property name="commit.message" value="[Seachart] Publish new release"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="10580"/>
     6    <property name="plugin.main.version" value="11858"/>
    77
    88    <property name="plugin.author" value="Malcolm Herring"/>
  • applications/editors/josm/plugins/seachart/src/seachart/ChartImage.java

    r32907 r33220  
    88import java.awt.geom.Point2D;
    99import java.awt.geom.Point2D.Double;
     10import java.util.Collection;
     11import java.util.Collections;
    1012
    1113import javax.swing.Action;
     
    148150        return RuleSet.ALL;
    149151    }
     152
     153    @Override
     154    public Collection<String> getNativeProjections() {
     155        return Collections.singletonList("EPSG:3857");
     156    }
    150157}
Note: See TracChangeset for help on using the changeset viewer.