我如何在我的项目中实现 PlacePicker,因为我可以通过实现此代码在 iOS 本机中实现这一点
@IBAction func pickPlace(_ sender: UIButton) {
let config = GMSPlacePickerConfig(viewport: nil)
let placePicker = GMSPlacePicker(config: config)
placePicker.pickPlace(callback: { (place, error) -> Void in
if let error = error {
print("Pick Place error: \(error.localizedDescription)")
return
}
guard let place = place else {
print("No place selected")
return
}
print("Place name \(place.name)")
print("Place address \(place.formattedAddress)")
print("Place attributions \(place.attributions)")
})
}
我怎样才能在 Xamarin.iOS 中做同样的事情
首先,我需要将 nuget 包含在我的项目中
其次 如何实现相同的代码