google的API坐标解析地址


+(NSString *)googleReverseStringWithCoordinate:(CLLocationCoordinate2D)coordinate{ 

return [NSString stringWithFormat:@"http://maps.google.com/maps/geoq=%lf,%lf&output=json&sensor=false&accuracy=4", coordinate.latitude,coordinate.longitude]; 

}

你可能感兴趣的:(google的API坐标解析地址)