iOS
iOS Google Places-API
Suche…
Orte in der Nähe vom aktuellen Standort abrufen
Voraussetzungen
- Installieren Sie Pods in Ihrem Projekt
- Installieren Sie das GooglePlaces SDK
- Standortdienste aktivieren
Zuerst müssen wir den Benutzer anhand der aktuellen Längen- und Breitengrade ermitteln.
- Importieren Sie GooglePlaces und GooglePlacePicker
import GooglePlaces
import GooglePlacePicker
- Fügen Sie das
CLLOcationManagerDelegate
Protokoll hinzu
class ViewController: UIViewController, CLLocationManagerDelegate {
}
- Erstelle deinen CLLocationManager ()
var currentLocation = CLLocationManager()
- Autorisierung anfordern
currentLocation = CLLocationManager()
currentLocation.requetAlwayAuthorization()
- Erstellen Sie eine Schaltfläche, um die GooglePlacePicker-Methode aufzurufen
@IBAction func placePickerAction (Sender: 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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow