gpt4 book ai didi

ios - MKReverseGeocoder 更新文本字段

转载 作者:行者123 更新时间:2023-11-28 17:46:46 25 4
gpt4 key购买 nike

我有与优步应用程序相同的解决方案。我想定位自己(这很简单)并在屏幕中央放置一些图钉。当我滚动 map 时,红色图钉停留在屏幕中央,文本字段中更新了红色图钉所在的街道名称。

我发现我必须为这个居中的图钉使用叠加 map ,但我不知道如何处理反向地理编码和文本字段。

有一些这种行为的例子,或者你能提供一些例子,或者任何如何做到这一点的吗?

enter image description here

最佳答案

1) 获取中心坐标

CLLocationCoordinate2D coord = mapview.centerCoordinate;

2) 对坐标进行反向地理编码

MKReverseGeocoder *geocoder = [[MKReverseGeocoder alloc] initWithCoordinate:coord];
[geocoder setDelegate:self];
[geocoder start];

3) 这个回调委托(delegate)会给你你想要的。检查地标

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark

关于ios - MKReverseGeocoder 更新文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5526314/

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