MapKit 查找最近的位置

发布于 2024-10-14 16:53:22 字数 176 浏览 2 评论 0原文

我想要完成使用mapKit并代表使用当前位置的任何商店的最近位置的应用程序。如果任何机构有代码,请发布该链接。我可以显示当前位置,但我需要距离函数,它返回某个商店的最近位置有界距离。就像如果我设置 10 英里,它只会显示 10 英里半径区域之间最近的商店。

问候

Haunshila

Ip

i want to done application which use mapKit and represent nearest location of any store using current location..If any body have code for it please post that link.I can show current location but i need distance function which return nearest location of some store in bounded distanc.Like if i set 10 mile it just show nearest store between 10 mile radius of region.

Regards

Haunshila

Ip

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

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

发布评论

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

评论(1

梦里°也失望 2024-10-21 16:53:22

有 google api,您可以通过它显示最近的搜索点..
在这里,您应该传递当前位置的纬度和经度以及搜索关键字(您要搜索的内容)以及您想要的搜索位置数量,您应该将其显示在 UIWebView 中。

请参考下面的代码..

NSString *searchString = @"Hospital";

NSString *tempURLString = [[NSString alloc] initWithFormat:@"http://maps.google.com/maps?q=%@+loc:%f,%f&num=4",searchString,currentUerLocation.coordinate.latitude ,currentUerLocation.坐标.经度];
NSURL *myURL = [NSURL URLWithString:tempURLString];
NSURLRequest *req1= [NSURLRequest requestWithURL:myURL];
[self.myWebView loadRequest:req1];

there are google api's by which you can display the nearest search points..
in this you should pass your current location latitude and longitude and the search key word (what you want to search) and the no.of search locations how many you want, you should display this in UIWebView.

Refer the below code..

NSString *searchString = @"Hospital";

NSString *tempURLString = [[NSString alloc] initWithFormat:@"http://maps.google.com/maps?q=%@+loc:%f,%f&num=4",searchString,currentUerLocation.coordinate.latitude,currentUerLocation.coordinate.longitude];
NSURL *myURL = [NSURL URLWithString:tempURLString];
NSURLRequest *req1= [NSURLRequest requestWithURL:myURL];
[self.myWebView loadRequest:req1];

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