iOS
API Google Adresses iOS
Recherche…
Obtenir des lieux proches de l'emplacement actuel
Conditions préalables
- Installer des modules dans votre projet
- Installer le SDK GooglePlaces
- Activer les services de localisation
Nous devons d'abord obtenir l'emplacement de l'utilisateur en obtenant sa longitude et sa latitude actuelles.
- Importer GooglePlaces et GooglePlacePicker
import GooglePlaces
import GooglePlacePicker
- Ajoutez le protocole
CLLOcationManagerDelegate
class ViewController: UIViewController, CLLocationManagerDelegate {
}
- créer votre CLLocationManager ()
var currentLocation = CLLocationManager()
- Demande d'autorisation
currentLocation = CLLocationManager()
currentLocation.requetAlwayAuthorization()
- Créer un bouton pour appeler la méthode GooglePlacePicker
@IBAction func placePickerAction (expéditeur: 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow