gpt4 book ai didi

ios - 在一个 CLLocationCoordinate2D 数组中收集 2 个数组 CLLocationDegree

转载 作者:行者123 更新时间:2023-11-29 13:19:48 25 4
gpt4 key购买 nike

我需要在 ios 上的谷歌地图上绘制折线,我在单独的数组中有纬度和经度,我想将它们收集在一个 CLLocationCoordinate2D 数组中,所以请帮助我编写制作此集合的代码

最佳答案

CLLocationCoordinate2D *coords = malloc(coordinateCount * sizeof(CLLocationCoordinate2D));
for(size_t i = 0; i < coordinateCount; ++i)
{
coords[i].latitude = latitudes[i];
coords[i].longitude = longitudes[i];
}

// ... Use the array ...

free(coords);

关于ios - 在一个 CLLocationCoordinate2D 数组中收集 2 个数组 CLLocationDegree,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14666336/

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