结合GMSMutablePaths

时间:2017-07-25 19:04:14

标签: ios google-maps concatenation google-maps-sdk-ios

我有

GMSMutablePath *pathLeft;

GMSMutablePath *pathRight;

我想将两者合并为一个GMSMutablePath。我似乎无法在谷歌地图iOS中找到一种方法来连接这两种方法。

我尝试通过创建新的GMSMutablePath     GMSMutablePath * newPath = pathLeft;

然后使用普通的组合数组方法:

[newPath addObjectsFromArray:pathRight];

这不起作用。根据文档" GMSMutablePath是CLLocationCoordinate2D的动态(可调整大小)数组。"

我是否只需要循环并将每个CLLocationCoordinate2D从第二个数组添加到第一个数组?或者有没有一种方法可用于此?

0 个答案:

没有答案