You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`EPMapViewDecorator` deals with the graphical representation of the map annotations. Basically it's designed to map annotation points over `MKMapView` to a set of customized annotation views.
Updates the user location with a new valid one provided that it is a valid location far away at least `minThresholdToUpdatePosition` meters from the old position
Copy file name to clipboardExpand all lines: readme.markdown
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,8 @@ EPMapExtension is an extension library built on the top of [MKMapKit](http://dev
9
9
The library architecture is based on the
10
10
11
11
## MapViewDecorator
12
-
12
+
13
+
MapViewDecorator is an attempt to deal with a considerable amount of customized annotationView spanning over the map without incurring in typical problems relevant to the trivial *switch-case, if-else if* control structures. In other words, it is a way to treat a good number of annotations and views in a more manageable and maintainable way.
13
14
14
15
### Registration of Annotations into MapDecorator
15
16
@@ -18,7 +19,9 @@ The library architecture is based on the
18
19
19
20
### Advanced Configurations
20
21
22
+
## Customized MapView
23
+
24
+
This customized MapView adds some useful features on top of the MKMapView class. In fact, it enables to filter annotation via
0 commit comments