예제 #1
0
 public SecondPolygonState(MapDrawingContext context, Coordinate startPoint)
 {
     _context    = context;
     _startpoint = startPoint;
 }
예제 #2
0
 public StartPolygonState(MapDrawingContext context)
 => _context = context;
예제 #3
0
 public ContinuePolygonState(MapDrawingContext context, IGeometry baseGeometry)
 {
     _context      = context;
     _baseGeometry = baseGeometry;
 }
예제 #4
0
 public ContinueLineStringState(MapDrawingContext context, IGeometry baseGeometry)
 {
     _context      = context;
     _baseGeometry = baseGeometry;
 }
예제 #5
0
 public AddPointState(MapDrawingContext context)
 => _context = context;
예제 #6
0
 public StartLineStringState(MapDrawingContext context)
 => _context = context;
예제 #7
0
 public ThirdPolygonState(MapDrawingContext context, IGeometry firstSegment)
 {
     _context      = context;
     _firstSegment = firstSegment;
 }