0

Out 应用程序正在调用 Apple 地图以查找地图上的地址,这就是我们向地图发送地址的方式

http://maps.apple.com/?q=1858 East Pike Street,(Old Route 50),Clarksburg,WV 26302 (Harry Green Chevrolet)&ll=39.278,-80.299 

其中说,未找到数据错误!但是在谷歌地图上找到了相同的位置谁能建议我如何在苹果地图上找到提到的位置提前谢谢

4

1 回答 1

0

首先,测试独立的 Apple 地图应用程序是否能够真正识别输入的地址。如果没有,请使用独立应用程序,直到您弄清楚服务的困惑之处。谷歌已经托管了他们的服务......更长的时间,他们是一家搜索公司——他们的专业知识包括高级语言处理是很自然的。

其次,我还建议您使用新的 iOS 6 API 打开地图。这就是我从坐标进行路由的方式。

// if you know the coordinates:
MKPlacemark * srcPlacemark = 
    [[[MKPlacemark alloc] initWithCoordinate:src 
                           addressDictionary:[NSDictionary dictionary]] autorelease];
MKMapItem * srcObj = [[[MKMapItem alloc] initWithPlacemark:srcPlacemark] autorelease];
// alternatively, if you want to use "user's current location":
// MKMapItem * srcObj = [MKMapItem mapItemForCurrentLocation];

// if you know the address:
NSDictionary * dstDict = [NSDictionary dictionaryWithObjectsAndKeys:
                          self.addressLabel.text, kABPersonAddressStreetKey,
                          self.city ? self.city : @"", kABPersonAddressCityKey,
                          self.country ? self.country : @"", kABPersonAddressCountryKey,
                          nil];
MKPlacemark * dstPlacemark = [[[MKPlacemark alloc] initWithCoordinate:dst addressDictionary:dstDict] autorelease];
MKMapItem * dstObj = [[[MKMapItem alloc] initWithPlacemark:dstPlacemark] autorelease];

return [MKMapItem openMapsWithItems:[NSArray arrayWithObjects:srcObj, dstObj, nil] 
                      launchOptions:[NSDictionary dictionaryWithObject:MKLaunchOptionsDirectionsModeDriving 
                                                                forKey:MKLaunchOptionsDirectionsModeKey]];
于 2013-05-28T10:53:37.907 回答