Skip to content

Commit 053bafa

Browse files
committed
adds some docs
1 parent bb96c7e commit 053bafa

File tree

4 files changed

+47
-4
lines changed

4 files changed

+47
-4
lines changed

EPMapExtensions/EPMapViewDecorator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
`EPMapViewDecoratorProtocol` is a subset of `MKMapViewDelegate`.
1616
*/
1717

18-
@protocol EPMapViewDecoratorProtocol
18+
@protocol EPMapViewDecoratorProtocol <NSObject>
1919
@required
2020
/**
2121
@param mapView The map view on which annotations are displayed

EPMapExtensions/EPUserPosition.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,17 @@
5252
@property (nonatomic, readonly) NSDate *lastValidPositionDate;
5353

5454
/**
55-
55+
Minimum threshold to get the user position updated
5656
*/
5757

5858
@property (nonatomic) CLLocationDistance minThresholdToUpdatePosition; //meters
5959

60+
/**
61+
Latitude and longitude relevant to the user position
62+
*/
63+
6064
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
6165

6266
@end
6367

64-
extern const CLLocationDistance TSMinimumDefaultThresholdToUpdateUserPosition;
68+
extern const CLLocationDistance TSMinimumDefaultThresholdToUpdateUserPosition;

iOSMapExtension.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@
266266
84BE5FFD17380C7B0067CC40 /* EPMapViewDecoratorTest.h */,
267267
84BE5FFE17380C7B0067CC40 /* EPMapViewDecoratorTest.m */,
268268
848EB05017464444009639D0 /* YAAnnotationView.h */,
269+
848EB05117464444009639D0 /* YAAnnotationView.m */,
269270
4882F2CE176FAEC700E9F1A7 /* EPTestAnnotation.h */,
270271
4882F2CF176FAEC700E9F1A7 /* EPTestAnnotation.m */,
271-
848EB05117464444009639D0 /* YAAnnotationView.m */,
272272
48DBE5AA1749856C0014BE48 /* EPAnnotationArrayTest.h */,
273273
48DBE5AB1749856C0014BE48 /* EPAnnotationArrayTest.m */,
274274
);
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDESourceControlProjectIdentifier</key>
6+
<string>4AE6E52B-C8BE-45E4-A6D3-174202C6F9E2</string>
7+
<key>IDESourceControlProjectName</key>
8+
<string>iOSMapExtension</string>
9+
<key>IDESourceControlProjectOriginsDictionary</key>
10+
<dict>
11+
<key>C72F3E41-4B75-4DD7-8B0D-331819FC045A</key>
12+
<string>https://bitbucket.org/epacces/iosmapextension.git</string>
13+
</dict>
14+
<key>IDESourceControlProjectPath</key>
15+
<string>iOSMapExtension.xcodeproj/project.xcworkspace</string>
16+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
17+
<dict>
18+
<key>C72F3E41-4B75-4DD7-8B0D-331819FC045A</key>
19+
<string>../..</string>
20+
</dict>
21+
<key>IDESourceControlProjectURL</key>
22+
<string>https://bitbucket.org/epacces/iosmapextension.git</string>
23+
<key>IDESourceControlProjectVersion</key>
24+
<integer>110</integer>
25+
<key>IDESourceControlProjectWCCIdentifier</key>
26+
<string>C72F3E41-4B75-4DD7-8B0D-331819FC045A</string>
27+
<key>IDESourceControlProjectWCConfigurations</key>
28+
<array>
29+
<dict>
30+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
31+
<string>public.vcs.git</string>
32+
<key>IDESourceControlWCCIdentifierKey</key>
33+
<string>C72F3E41-4B75-4DD7-8B0D-331819FC045A</string>
34+
<key>IDESourceControlWCCName</key>
35+
<string>iOSMapExtensions</string>
36+
</dict>
37+
</array>
38+
</dict>
39+
</plist>

0 commit comments

Comments
 (0)