如何像在 Google 地图中一样将 window 放在折线上

How to put window on polyline like in Google maps

如何像在 Google 地图中一样将 window 信息放在折线上。 我需要像在 Google 地图中那样在折线上放置 window 信息。 下图红圈处。 我注意到 Whosebug 中的一些问题没有给出预期的结果。所以这个问题不是重复的。

使用这个库https://developers.google.com/maps/documentation/android-sdk/utility/

我试过了效果不错

IconGenerator iconFactory = new IconGenerator(activity);
MarkerOptions markerOptions = new MarkerOptions()
            .icon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Your text")))
            .position("Position that you want")
            .anchor(iconFactory.getAnchorU(), iconFactory.getAnchorV());