使用Place API

时间:2016-10-08 17:28:33

标签: c# android xamarin

我正在尝试使用酒店,餐馆等附近的用户来填充谷歌地图。 不幸的是我无法找到对xamarin android的支持并在xamarin android中放置API 有什么建议如何实现这个?

1 个答案:

答案 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命名空间。