Changeset 35391 in osm for applications/editors/josm/plugins/seachart/jchart/src
- Timestamp:
- 2020-03-21T19:12:28+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/jchart/src/jchart/Jchart.java
r35388 r35391 9 9 import java.awt.image.BufferedImage; 10 10 import java.io.BufferedReader; 11 import java.io.ByteArrayOutputStream;12 11 import java.io.File; 13 12 import java.io.FileOutputStream; … … 15 14 import java.io.IOException; 16 15 import java.io.OutputStreamWriter; 17 import java.io.PrintWriter;18 16 import java.io.Writer; 19 17 … … 86 84 87 85 @Override 86 public int grid() { 87 return 5; 88 } 89 90 @Override 88 91 public Color background(S57map map) { 89 92 if (map.features.containsKey(Obj.COALNE)) { … … 131 134 BufferedReader in = new BufferedReader(new FileReader(args[0])); 132 135 zoom = Integer.parseInt(args[1]); 133 map = new S57map( true);136 map = new S57map(false); 134 137 S57osm.OSMmap(in, map, false); 135 138 in.close();
Note:
See TracChangeset
for help on using the changeset viewer.