ibrabeicker
ibrabeicker

Reputation: 1839

How to let user select a coordinate in a map?

Google search suggests using PlacePicker but the import fails at location using API 23 and the appropriate dependency in gradle compile "com.google.android.gms:play-services-gcm:8.4.0"

import com.google.android.gms.location.places.ui.PlacePicker;

It seems this package is deprecated and not available anymore. How can I prompt the user to select an arbitrary point in a map?

Upvotes: 0

Views: 81

Answers (1)

Daniel Nugent
Daniel Nugent

Reputation: 43322

You are currently only using gcm, and you need to use location.

Put this in your dependencies in your build.gradle, and your import will resolve successfully:

dependencies {
    //.......
    compile 'com.google.android.gms:play-services-location:8.4.0'
}

More details: https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project

Upvotes: 2

Related Questions