简体   繁体   English

如何在Android的mapbox sdk中绘制曲线折线

[英]How to draw curved polyline in mapbox sdk for Android

I want to draw a curved polyline between two points on a map with the Mapbox SDK.我想使用 Mapbox SDK 在地图上的两点之间绘制一条弯曲的折线。

I could not find any solution from the Mapbox SDK.我无法从 Mapbox SDK 中找到任何解决方案。 The Turf library is not ready yet to use it on Android. Turf 库尚未准备好在 Android 上使用它。

I found a solution with the google maps sdk so I converted it to use only the Mapbox sdk :我找到了一个使用 google maps sdk 的解决方案,所以我将其转换为仅使用 Mapbox sdk:

Inspired by Can I draw a curved dashed line in Google Maps Android?灵感来自Can I draw a curve dash line in Google Maps Android?

public static List<LatLng> computeCurvedPolyline(LatLng from, LatLng to, double k) {
    //Calculate distance and heading between two points
    double distance = from.distanceTo(to);
    double heading = computeHeading(from, to);
    //Midpoint position
    LatLng p = computeOffset(from, distance * 0.5, heading);

    //Apply some mathematics to calculate position of the circle center
    double x = (1 - k * k) * distance * 0.5 / (2 * k);
    double r = (1 + k * k) * distance * 0.5 / (2 * k);

    LatLng c = computeOffset(p, x, heading + 90.0);

    //Polyline options
    List<LatLng> mapboxLatlng = new ArrayList<>();

    //Calculate heading between circle center and two points
    double h1 = computeHeading(c, from);
    double h2 = computeHeading(c, to);

    //Calculate positions of points on circle border and add them to polyline options
    int numpoints = 100;
    double step = (h2 - h1) / numpoints;

    for (int i = 0; i < numpoints; i++) {
        LatLng pi = computeOffset(c, r, h1 + i * step);
        mapboxLatlng.add(pi);
    }
    return mapboxLatlng;
}

static double computeHeading(LatLng from, LatLng to) {
    double fromLat = Math.toRadians(from.getLatitude());
    double fromLng = Math.toRadians(from.getLongitude());
    double toLat = Math.toRadians(to.getLatitude());
    double toLng = Math.toRadians(to.getLongitude());
    double dLng = toLng - fromLng;
    double heading = Math.atan2(Math.sin(dLng) * Math.cos(toLat), Math.cos(fromLat) * Math.sin(toLat) - Math.sin(fromLat) * Math.cos(toLat) * Math.cos(dLng));
    return wrap(Math.toDegrees(heading), -180.0D, 180.0D);
}

static double wrap(double n, double min, double max) {
    return n >= min && n < max ? n : mod(n - min, max - min) + min;
}

static double mod(double x, double m) {
    return (x % m + m) % m;
}

static LatLng computeOffset(LatLng from, double distance, double heading) {
    distance /= 6371009.0D;
    heading = Math.toRadians(heading);
    double fromLat = Math.toRadians(from.getLatitude());
    double fromLng = Math.toRadians(from.getLongitude());
    double cosDistance = Math.cos(distance);
    double sinDistance = Math.sin(distance);
    double sinFromLat = Math.sin(fromLat);
    double cosFromLat = Math.cos(fromLat);
    double sinLat = cosDistance * sinFromLat + sinDistance * cosFromLat * Math.cos(heading);
    double dLng = Math.atan2(sinDistance * cosFromLat * Math.sin(heading), cosDistance - sinFromLat * sinLat);
    return new LatLng(Math.toDegrees(Math.asin(sinLat)), Math.toDegrees(fromLng + dLng));
}

This code will return a list of LatLng points that you can draw on your map, enjoy !此代码将返回您可以在地图上绘制的 LatLng 点列表,尽情享受吧!

The result produced by this code (not the blurred part of course!):这段代码产生的结果(当然不是模糊部分!): 在此处输入图片说明

Any improvement to this code is welcomed !欢迎对此代码进行任何改进!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM