iOS
iOS Google Places API
サーチ…
現在地から近隣の場所を取得する
前提条件
- プロジェクトにポッドをインストールする
- GooglePlaces SDKをインストールする
- 位置情報サービスを有効にします
まず、現在の経度と緯度を取得してユーザーの場所を取得する必要があります。
- GooglePlacesとGooglePlacePickerをインポートする
import GooglePlaces
import GooglePlacePicker
-
CLLOcationManagerDelegate
プロトコルを追加する
class ViewController: UIViewController, CLLocationManagerDelegate {
}
- あなたのCLLocationManager()を作成する
var currentLocation = CLLocationManager()
- 承認をリクエストする
currentLocation = CLLocationManager()
currentLocation.requetAlwayAuthorization()
- GooglePlacePickerメソッドを呼び出すボタンを作成する
@IBAction関数placePickerAction(送信者:AnyObject){
if CLLOcationManager.authorizationStatues() == .AuthorizedAlways {
let center = CLLocationCoordinate2DMake((currentLocation.location?.coordinate.latitude)!, (currentLocation.location?.coordinate.longitude)!)
let northEast = CLLocationCoordinate2DMake(center.latitude + 0.001, center.longitude + 0.001)
let southWest = CLLocationCoordinate2DMake(center.latitude - 0.001, center.longitude - 0.001)
let viewport = GMSCoordinateBounds(coordinate: northEast, coordinate: southWest)
let config = GMSPlacePickerConfig(viewport: viewport)
placePicker = GMSPlacePicker(config: config)
placePicker?.pickPlaceWithCallback({ (place: GMSPlace?, error: NSError?) -> Void in
if let error = error {
print("Pick Place error: \(error.localizedDescription)")
return
}
if let place = place {
print("Place name: \(place.name)")
print("Address: \(place.formattedAddress)")
} else {
print("Place name: nil")
print("Address: nil")
}
})
}
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow