gpt4 book ai didi

ios - 如何在 iOS 中 GMSPolyline 的端点上绘制箭头?

转载 作者:行者123 更新时间:2023-12-01 16:14:59 26 4
gpt4 key购买 nike

我正在使用谷歌地图 iOS sdk。我使用以下代码在我的谷歌地图上添加了折线。但现在我想在这一行的末尾添加箭头。如何解决这个问题?

GMSMutablePath *path = [GMSMutablePath path];
[path addLatitude:-37.81319 longitude:144.96298];
[path addLatitude:-31.95285 longitude:115.85734];
GMSPolyline *polyline = [GMSPolyline polylineWithPath:path];
polyline.strokeWidth = 3.f;
polyline.map = mapaView;

polyline must be look like this image

最佳答案

您可以使用 GMSMarker指示折线的端点:

    GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(22.200000, 114.1333900);
marker.title = @"Endpoint";
marker.map = mapView;

关于ios - 如何在 iOS 中 GMSPolyline 的端点上绘制箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41114177/

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