RMPath.h
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// RMPolygon.h
// Shapes
//
// Created by Joseph Gentle on 11/11/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RMFoundation.h"
#import "RMLatLong.h"
#import "RMMapLayer.h"
@class RMMapContents;
@class RMMapView;
@interface RMPath : RMMapLayer
{
NSMutableArray *points;
// This is the first point.
RMXYPoint origin;
// The color of the line and polygon's fill.
UIColor *lineColor;
UIColor *fillColor;
CGMutablePathRef path;
// Width of the line.
float lineWidth;
// Drawing mode of the path. Choices are:
/*
kCGPathFill,
kCGPathEOFill,
kCGPathStroke,
kCGPathFillStroke,
kCGPathEOFillStroke */
CGPathDrawingMode drawingMode;
float renderedScale;
RMMapContents *contents;
}
- (id) initWithContents: (RMMapContents*)aContents;
- (id) initForMap: (RMMapView*)map;
@property CGPathDrawingMode drawingMode;
@property (readwrite, assign) UIColor *lineColor;
@property (readwrite, assign) UIColor *fillColor;
// This is the position on the map of the first point.
@property (readwrite, assign) RMXYPoint origin;
@property float lineWidth;
- (void) addLineToXY: (RMXYPoint) point;
- (void) addLineToScreenPoint: (CGPoint) point;
- (void) addLineToLatLong: (RMLatLong) point;
// This closes the path, connecting the last point to the first.
// After this point, no further points can be added to the path.
- (void) closePath;
//- (void) setPoints: (NSArray*) arr;
//- (void) moveBy: (RMXYSize) delta;
@end