Skip to content

Commit 1364937

Browse files
author
iBinh
committed
update readme
1 parent dbc4080 commit 1364937

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,15 @@ NSURLSessionDataTask *task = [geocoder geocodeWithOptions:options
116116
}];
117117
```
118118
119-
119+
### Place Detail
120+
_Place Detail_ allows you to fetch detail of a place from it's id
121+
```swift
122+
geocoder.fetchPlace(from: <#Place ID#>) { (<#PlaceDetailResult?#>, <#NSError?#>) in
123+
<#code#>
124+
}
125+
```
126+
```objc
127+
[geocoder fetchPlace:@"" completionHandler:^(PlaceDetailResult * _Nullable result, NSError * _Nullable err) {
128+
<#code#>
129+
}]
130+
```

0 commit comments

Comments
 (0)