Ignore:
Timestamp:
2021-10-30T10:14:20+02:00 (4 years ago)
Author:
malcolmh
Message:

add seabed areas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/render/ChartContext.java

    r35391 r35835  
    1414public interface ChartContext {
    1515    enum RuleSet { ALL, BASE, SEAMARK }
     16    class Chart {
     17        public int zoom;
     18        public double scale;
     19        public int grid;
     20        public boolean rose;
     21        public double roseLat;
     22        public double roseLon;
     23        public Chart() {
     24                zoom = 15;
     25                scale = 1.0;
     26                grid = 0;
     27                rose = false;
     28                roseLat = roseLon = 0;
     29        }
     30    }
    1631
    1732    Point2D getPoint(Snode coord);
     
    2237   
    2338    int grid();
     39   
     40    Chart chart();
    2441
    2542    Color background(S57map map);
Note: See TracChangeset for help on using the changeset viewer.