HMS 中 com.google.maps.android.SphericalUtil 的替代方案

Alternative for com.google.maps.android.SphericalUtil in HMS

标准 HMS 转换器对 SphericalUtil.computeOffsetcom.google.maps.android:android-maps-utils)没有任何作用。同时依赖于'com.google.android.gms.maps.model.LatLng'。 HMS world有替代方案吗(对于SphericalUtil,从https://github.com/googlemaps/android-maps-utils复制粘贴不算)?

0

华为有做球面图功能的开源:

https://github.com/SupasinTatiyanupanwong/huawei-maps-utils

在这里我们可以做球面几何——例如:computeDistance、computeHeading、computeArea

dependencies {
    implementation 'me.tatiyanupanwong.supasin.android.libraries.huawei.maps:maps-utils:1.0.0-alpha02'
} 

并做

double distance = SphericalUtil.computeDistanceBetween(mMarkerA.getPosition(), mMarkerB.getPosition());