我正在用Ktor创建一个API rest,我想使用Google Places API和placeId从一些地方获取更多信息。
有可能吗?
我曾尝试按照Android文档添加PlacesAPI的依赖项,但由于找不到类,因此无法正常工作
dependencies {
...
// Places
implementation ("com.google.android.libraries.places:places:3.0.0")
implementation ("com.google.android.gms:play-services-maps:18.1.0")
implementation ("com.google.maps.android:android-maps-utils:2.4.0")
}
1条答案
按热度按时间eqqqjvef1#
最后我找到了答案。你必须使用服务器端特定的依赖项。
https://github.com/googlemaps/google-maps-services-java
我把问题留在这里,以防有一天有人有同样的问题!