如何自动完成GeoDataClient的使用限制

时间:2018-12-24 10:39:07

标签: android google-maps android-studio autocomplete google-places-api

我正在使用Google Map上的AutoComplete Android应用程序,我在我的应用程序中使用GeoDataClient 下面的代码

此代码来自适用于Android的Google Places API示例 https://github.com/googlesamples/android-play-places

GeoDataClient mGeoDataClient;    
mGeoDataClient = Places.getGeoDataClient(this);
AutocompleteFilter autocompleteFilter =
            new 
AutocompleteFilter.Builder().setTypeFilter(Place.TYPE_COUNTRY).
setCountry("SY") 
    .build();
    mAdapter = new PlaceAutocompleteAdapter(this, mGeoDataClient, 
    BOUNDS_GREATER_SYDNEY, autocompleteFilter);
    areaAutoCompleteTextView.setAdapter(mAdapter);

我想知道如何限制这种用法 而且我想知道如何进行计费。 我在此链接中找到了有关计费的信息 https://developers.google.com/places/web-service/usage-and-billing

但是他通过两种方式使用Web服务API(不带位置明细的自动完成和包含位置明细的自动完成)

我不知道我的代码是什么类型, 没有详细信息包含详细信息的地方

0 个答案:

没有答案