我正在尝试使用酒店,餐馆等附近的用户来填充谷歌地图。 不幸的是我无法找到对xamarin android的支持并在xamarin android中放置API 有什么建议如何实现这个?
答案 0 :(得分:5)
您正在寻找Xamarin.GooglePlayServices.Places
nuget:
<package id="Xamarin.GooglePlayServices.Places" version="32.940.0-beta3" targetFramework="monoandroid70" />
添加到Xamarin.Android
项目后,您可以将Place API添加到GoogleApiClient
:
mGoogleApiClient = new GoogleApiClient
.Builder(this)
.AddApi(PlacesClass.GEO_DATA_API)
.AddApi(PlacesClass.PLACE_DETECTION_API)
.EnableAutoManage(this, this)
.Build();
Places API位于Android.Gms.Location.Places
命名空间。