iOS
Interfejs API miejsc Google iOS
Szukaj…
Uzyskiwanie miejsc w pobliżu z bieżącej lokalizacji
Wymagania wstępne
- Zainstaluj strąki w swoim projekcie
- Zainstaluj pakiet GooglePlaces SDK
- Włącz usługi lokalizacyjne
Najpierw musimy uzyskać lokalizację użytkowników, uzyskując ich aktualną długość i szerokość geograficzną.
- Importuj GooglePlaces i GooglePlacePicker
import GooglePlaces
import GooglePlacePicker
- Dodaj protokół
CLLOcationManagerDelegate
class ViewController: UIViewController, CLLocationManagerDelegate {
}
- utwórz swój CLLocationManager ()
var currentLocation = CLLocationManager()
- Poproś o autoryzację
currentLocation = CLLocationManager()
currentLocation.requetAlwayAuthorization()
- Utwórz przycisk, aby wywołać metodę GooglePlacePicker
@IBAction func placePickerAction (nadawca: 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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow