iOS
API di Google Places per iOS
Ricerca…
Ottenere luoghi nelle vicinanze dalla posizione corrente
Prerequisiti
- Installa i pod nel tuo progetto
- Installa l'SDK di GooglePlaces
- Abilita i servizi di localizzazione
Per prima cosa dobbiamo ottenere la posizione degli utenti ottenendo la loro longitudine e latitudine correnti.
- Importa GooglePlaces e GooglePlacePicker
import GooglePlaces
import GooglePlacePicker
- Aggiungere il protocollo
CLLOcationManagerDelegate
class ViewController: UIViewController, CLLocationManagerDelegate {
}
- crea il tuo CLLocationManager ()
var currentLocation = CLLocationManager()
- Richiedi l'autorizzazione
currentLocation = CLLocationManager()
currentLocation.requetAlwayAuthorization()
- Crea un pulsante per chiamare il metodo GooglePlacePicker
@IBAction func placePickerAction (mittente: 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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow