ios - Combining GMSMutablePaths -
i have
gmsmutablepath *pathleft; gmsmutablepath *pathright;
i want combine 2 1 gmsmutablepath. can't seem find method in google maps ios concatenate two.
i tried creating new gmsmutablepath gmsmutablepath *newpath = pathleft;
and using normal combine array method:
[newpath addobjectsfromarray:pathright];
this not work. according documentation "gmsmutablepath dynamic (resizable) array of cllocationcoordinate2d."
do need loop , add each cllocationcoordinate2d second first array? or there method out there this?
Comments
Post a Comment