点击地图时如何存储数据?

发布于 2024-12-02 00:14:47 字数 94 浏览 1 评论 0原文

我正在制作一个应用程序,其中我有地图视图,其中地图被放大。当用户单击地图时,然后删除注释。当注释落在该地址上时,该地址将存储在字符串中。如何将地图视图中的数据存储在字符串中?

I am making an application in which i have map view where map is zoom in. When user click on map then drop an annotation . When annotation drop on that address then that address will be store in an string. How store data in string from mapview?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶ ̄淡然 2024-12-09 00:14:47

你的意思是:纬度和经度?

// Assume  you declare MKMapView *mapView;
CGPoint point = [sender locationInView:self.mapView];
CLLocationCoordinate2D locCoord =[self.mapView convertPoint:point toCoordinateFromView:self.mapView];

NSString *yourAddress = [NSString stringWithFormat:@"Lat: %f, Lng: %f", locCoord.latitude, locCoord.longitude];

希望这是您想要的,如果没有更具体地说明您想要实现的目标,我会尽力提供帮助。

编辑:

如果位置是您想要的,这可能会有所帮助:http://stackoverflow.com/questions /3822297/read-current-location-name-using-map-view-in-iphone

感谢:发布示例代码的 MathieuF。

You mean the : latitute and longitude?

// Assume  you declare MKMapView *mapView;
CGPoint point = [sender locationInView:self.mapView];
CLLocationCoordinate2D locCoord =[self.mapView convertPoint:point toCoordinateFromView:self.mapView];

NSString *yourAddress = [NSString stringWithFormat:@"Lat: %f, Lng: %f", locCoord.latitude, locCoord.longitude];

Hope this is what you want, if not be more specified of what you want to achieve, I will try to help.

EDIT:

If location is what you want, this might be of help: http://stackoverflow.com/questions/3822297/read-current-location-name-using-map-view-in-iphone

Credits to: MathieuF who posted the sample code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文