gpt4 book ai didi

ios - 在 ios 中的谷歌地图上添加多个图钉

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:46:57 24 4
gpt4 key购买 nike

我想在加载谷歌地图时在它上添加多个图钉。

我有一个附近位置的纬度和经度值列表。我怎样才能用图钉在 map 上显示所有这些位置。我正在使用适用于 iOS 的 Google SDK。

我正在使用以下代码,但它对我不起作用。

NSMutableArray *array = [NSMutableArray arrayWithObjects:@"12.981902,80.266333",@"12.982902,80.266363", nil];

CLLocationCoordinate2D pointsToUse[5];

for (int i = 0; i < [array Size]; i++)
{
pointsToUse[i] = CLLocationCoordinate2DMake([[[[array objectAtIndex:0] componentsSeparatedByString:@","] objectAtIndex:0] floatValue],[[[[array objectAtIndex:0] componentsSeparatedByString:@","] objectAtIndex:1] floatValue]);

[array removeObjectAtIndex:0];

GMSMarkerOptions *options = [[GMSMarkerOptions alloc] init];
options.position = pointsToUse[i];
[mapView_ animateToLocation:pointsToUse[i]];
[mapView_ addMarkerWithOptions:options];
}

我已尽力搜索它,但没有足够的文档来回答我的问题。

在此先感谢您的帮助。

最佳答案

这对我有用:

for(GMSMarker*marker in array)
{
GMSMarker *mkr= [[GMSMarker alloc]init];
[mkr setPosition:CLLocationCoordinate2DMake(<coord>)];

[mkr setAnimated:YES];
[mkr setTitle:<Title>];
[mkr setSnippet:<Snippet>];
[mkr setMap:mapView_];
}

使用最新的 Google Maps SDK。

希望对你有帮助

关于ios - 在 ios 中的谷歌地图上添加多个图钉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16191436/

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