Android添加地点到Google商家信息数据库不起作用

时间:2015-09-21 14:42:15

标签: android google-maps google-maps-android-api-2 google-places-api

我正在使用Google地图和Google商家信息开发Android应用程序。 当用户长时间点击地图时,我会向他显示一个表单,在表单中他可以添加有关其点击位置的详细信息,然后我想将其作为新Google地方添加到Google数据库。 这是我在提交表格之前和之后所做的事情:

onCreate()中的

mGoogleApiClient = new GoogleApiClient
                .Builder(this)
                .addApi(Places.GEO_DATA_API)
                .enableAutoManage(this, 0, this)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .build();
提交表单后

private void addPlaceToGoogleDbAndToTrip()
{
    final Double lat = getIntent().getExtras().getDouble("lat");
    final Double lng = getIntent().getExtras().getDouble("lng");
    final String placeName = newPlaceNameET.getText().toString();
    final String address = newPlaceAddressET.getText().toString();
    final String website = newPlaceWebsiteET.getText().toString();
    final String phoneNumber = newPlacePhoneET.getText().toString();
    LatLng latlng = new LatLng(lat, lng);

AddPlaceRequest place =
        new AddPlaceRequest(
                placeName, // Name
                latlng, // Latitude and longitude
                address, // Address
                Collections.singletonList(Place.TYPE_POINT_OF_INTEREST), // Place types
                phoneNumber, // Phone number
                Uri.parse("www.SomeWebsite.co.il") // Website
        );

Places.GeoDataApi.addPlace(mGoogleApiClient, place).setResultCallback(new ResultCallback<PlaceBuffer>()
{
    @Override
    public void onResult(PlaceBuffer places)
    {

        if (!places.getStatus().isSuccess()) {

            Log.e(TAG, "Place query did not complete. Error: " + places.getStatus().toString());
            places.release();
            return;
        }

        final Place place = places.get(0);
        newPlaceID = place.getId();
        Log.i(TAG, "Place add result: " + place.getName());
        places.release();

    }
});
}

但是 places.get(0)用于返回一个空位,现在我甚至没有得到...我得到了一个错误的结果回来了。它说:“ERROR_OPERATION_FAILED,resolution = null”。

我的清单也有这个:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

<meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />
<meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="@string/google_maps_key" />

知道可能是什么问题吗? API在我的开发人员控制台中启用。

谢谢!

1 个答案:

答案 0 :(得分:2)

使用com.google.android.geo.API_KEY而不是com.google.android.maps.v2.API_KEY