我需要在我的应用中实现地图视图以找到所需的位置。我试过SVGeocoder的概念。
[SVGeocoder geocode:searchfield.text
completion:^(NSArray *placemarks, NSHTTPURLResponse *urlResponse, NSError *error) {
}
但是假设我正在尝试搜索任何restaurent,那么结果是nil。
我正在查看Google地图sdk,但不知道如何在GMSCameraPosition类上执行搜索功能。
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:latitude
longitude:longitude
zoom:5];
如何使用google sdk搜索地址。
提前致谢。
答案 0 :(得分:0)
如果我理解正确,您需要来自地址字符串的位置坐标。它的前向地理编码。您可以查看Google的免费API:Link1
您需要使用Google帐户中的API密钥才能访问此API,并且可以根据您的请求数量选择免费或商业计划。
您需要使用CLLocation对象从您的地址获取坐标。我写了一个类似的功能。
CLLocation* temp_location=[[CLLocation alloc]init];
temp_location=[GeoCoding findAddressCordinates:sourceAddressTxtField.text];
//用于查找坐标的类GeoCoding
#import <Foundation/Foundation.h>
@interface GeoCoding : NSObject {
}
+(CLLocation*)findAddressCordinates:(NSString*)addressString;
@end
#import "GeoCoding.h"
#import <CoreLocation/CLAvailability.h>
@implementation GeoCoding
+(CLLocation*)findAddressCordinates:(NSString*)addressString {
CLLocation *location;
NSString *url = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/json?address=%@&sensor=true", addressString];
url = [url stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSURL *wurl = [NSURL URLWithString:url];
NSData *data = [NSData dataWithContentsOfURL: wurl];
// Fail to get data from server
if (nil == data) {
NSLog(@"Error: Fail to get data");
}
else{
// Parse the json data
NSError *error;
NSDictionary *json = [NSJSONSerialization
JSONObjectWithData:data
options:kNilOptions
error:&error];
// Check status of result
NSString *resultStatus = [json valueForKey:@"status"];
// If responce is valid
if ( (nil == error) && [resultStatus isEqualToString:@"OK"] ) {
NSDictionary *locationDict=[json objectForKey:@"results"] ;
NSArray *temp_array=[locationDict valueForKey:@"geometry"];
NSArray *temp_array2=[temp_array valueForKey:@"location"];
NSEnumerator *enumerator = [temp_array2 objectEnumerator];
id object;
while ((object = [enumerator nextObject])) {
double latitude=[[object valueForKey:@"lat"] doubleValue];
double longitude=[[object valueForKey:@"lng"] doubleValue];
location=[[CLLocation alloc] initWithLatitude:latitude longitude:longitude];
NSLog(@"CLLocation lat is %f -------------& long %f",location.coordinate.latitude, location.coordinate.longitude);
}
}
}
return location;
}
@end
然后,您可以在Google地图中使用此坐标来关注相机位置。