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
Copy file name to clipboardExpand all lines: src/MapViewController.swift
+8-8
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ import OnTheRoad
27
27
/// Single Tap Gesture Delegate
28
28
publicprotocolMapSingleTapGestureDelegate:class{
29
29
/**
30
-
Asks the delegate if the map should recognize this single tap and perform default functionality.
30
+
Asks the delegate if the map should recognize this single tap and perform default functionality (which is nothing, currently).
31
31
32
32
- parameter controller: The MapViewController that wants to recognize the tap.
33
33
- parameter recognizer: The recognizer that initially recognized the tap.
@@ -50,7 +50,7 @@ public protocol MapSingleTapGestureDelegate : class {
50
50
/// Double Tap Gesture Delegate
51
51
publicprotocolMapDoubleTapGestureDelegate:class{
52
52
/**
53
-
Asks the delegate if the map should recognize this double tap and perform default functionality.
53
+
Asks the delegate if the map should recognize this double tap and perform default functionality (which is nothing, currently).
54
54
55
55
- parameter controller: The MapViewController that wants to recognize the tap.
56
56
- parameter recognizer: The recognizer that initially recognized the tap.
@@ -73,7 +73,7 @@ public protocol MapDoubleTapGestureDelegate : class {
73
73
/// Long Press Gesture Delegate
74
74
publicprotocolMapLongPressGestureDelegate:class{
75
75
/**
76
-
Asks the delegate if the map should recognize this long press gesture and perform default functionality.
76
+
Asks the delegate if the map should recognize this long press gesture and perform default functionality (which is nothing, currently).
77
77
78
78
- parameter controller: The MapViewController that wants to recognize the press.
79
79
- parameter recognizer: The recognizer that initially recognized the press.
@@ -187,7 +187,7 @@ public protocol MapTileLoadDelegate : class {
187
187
/**
188
188
MapViewController is the main class utilized for displaying Mapzen maps on iOS. It aims to provide the full set of features a developer would want for mapping-related tasks, such as displaying routes, results of a search, or the device's current location (and any combination therein.)
189
189
190
-
MapViewController wraps the underlying `TGMapViewController` from Tangram-es and handles adding it to the view hierarchy. It exposes this
190
+
MapViewController wraps the underlying `TGMapViewController` from Tangram-es and handles adding it to the view hierarchy. It exposes this in the `tgViewController` property and allows for additional customization there using the Tangram-es iOS framework. Documentation on that is available [here](https://mapzen.com/documentation/tangram/iOS-API/).
0 commit comments