我正在尝试按SphericalUtil.computeArea()
方法计算多边形的面积,但是无法解析符号SphericalUtil
。
我在gradle.build
compile 'com.google.maps.android:android-maps-utils:0.4.+'
答案 0 :(得分:4)
compile 'com.google.maps.android:android-maps-utils:0.4.+'
这不是有效的依赖项,因为.
和4
之间存在+
,因此无法解析。
如their official website所述,您应该使用此代替
dependencies {
compile 'com.google.maps.android:android-maps-utils:0.4+'
}
没有那个额外的点。
然后您可以将其与此导入一起使用
import com.google.maps.android.SphericalUtil;