We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d09f266 + fac0b15 commit e3eacd1Copy full SHA for e3eacd1
Source/OCGoogleDirectionsAPI/Response/Attributes/OCDirectionsRoute.m
@@ -46,6 +46,7 @@ - (void)loadAllProperties
46
[self loadWaypointOrder];
47
[self loadOverviewPolyline];
48
[self loadBounds];
49
+ [self loadSummary];
50
}
51
52
- (void)loadLegs
@@ -97,4 +98,10 @@ - (void)loadBounds
97
98
_bounds = bounds;
99
100
101
+- (void)loadSummary
102
+{
103
+ NSString *summary = [_dictionary objectForKey:kCGGoogleDirectionsResponseAttributeRouteSummary];
104
+ _summary = summary;
105
+}
106
+
107
@end
0 commit comments