当我尝试在我的代码中使用LatLng类时,没有可用的导入。有谁可以请解决问题?我已经安装了谷歌播放服务模块thriugh SDK经理。
答案 0 :(得分:5)
可在
中找到compile' com.google.android.gms:play-services-maps:9.6.0'
您可以使用最新的版本替换该版本。
答案 1 :(得分:4)
LatLng位于com.google.android.gms.maps.model package
,如果您将implementation 'com.google.android.gms:play-services-maps:15.0.1'
添加到gradle依赖项,则可以使用它。
答案 2 :(得分:1)
将此内容添加到您的应用程序 build.gradle 文件
中 apply plugin: 'com.android.application'
...
dependencies {
implementation 'com.google.android.gms:play-services-maps:15.0.1'
}
有关更多信息,请查看developers.google.com