ロケーションアドレスの合計アドレスと座標を取得していますが、Googleマップに表示する座標だけが必要です。 iPhoneではどのように可能ですか?コンテンツの合計アドレスから座標を取得する方法は?
- (void)geocode {
[SVGeocoder geocode:addressField.text
completion:^(NSArray *placemarks, NSError *error) {
UIAlertView *alertView;
if(!error && placemarks) {
SVPlacemark *placemark = [placemarks objectAtIndex:0];
NSLog(@"%@",placemarks);
alertView = [[UIAlertView alloc] initWithTitle:@"Placemark Found!" message:[placemark description] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
} else {
alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:[error description] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
}
[alertView show];
[alertView release];
}];
ジオコード
の応答 "{\ nのアドレス= {\ nは市= Nalgonda; \ nは国= インド; \ nは国番号IN =; \ nは国家= \" \ n座標\ {\ n latitude = \ "17.05239 \"; \ n経度= \ "79.26718 \"; \ n}; \ n
formattedAddress = \ "Nalgonda、 Andhra Pradesh、India \ "; \ n}"
ドキュメントを読んで(逆ジオコーディング)、stackoverflowの検索機能を試してみてください。 – Pochi
ようこそスタックオーバーフロー。 [FAQ](http://stackoverflow.com/faq)をお読みください。あなたは本当にあなたの既存の質問(http://stackoverflow.com/questions/9920640/how-to-get-latitude-and-longitude-from-a-full-address-country-city-etc)を改善するべきです。新しいもの –
以前の質問をこの質問にマージしました。これははるかに良い質問です。しかし、将来はオリジナルを編集してください。 –