gpt4 book ai didi

android - 使用未弃用的方法在 android google maps api v2 中跟踪步行或驾驶路线

转载 作者:行者123 更新时间:2023-11-29 00:09:01 25 4
gpt4 key购买 nike

我想完成这项任务,我找到了一些库来完成这项任务 here by tyczjhere by akexorcist .这些都是很好的解决方案,但这个库使用 httpClient,目前已被弃用,还有其他解决方案吗?谢谢。

它可能会有用。

最佳答案

  1. 发出您自己的 http 请求以从 The Google Directions API 获取路线信息并从响应中获取 overview_polyline 字符串。
  2. 使用android-maps-utils解码字符串带有 PolyUtil.decode 方法的库。

  3. 将解码点添加到 map :

    List<LatLng> decodedPoints = PolyUtil.decode(polylineString);
    PolylineOptions options = new PolylineOptions();
    options.width(6);
    options.color(Color.RED);
    options.addAll(decodedPoints);

    map.addPolyline(options);

关于android - 使用未弃用的方法在 android google maps api v2 中跟踪步行或驾驶路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31596306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com