我想给用户一个选项,让他在iPhone的谷歌地图上输入他想搜索的位置名。当用户输入特定地图应该出现的位置名时。
现在,我通过固定坐标在其对象纬度和经度中的值来实现这一点。
CLLocationCoordinate2D location=mapView.userLocation.coordinate;
location.latitude=19.14;
location.longitude=73.10;
有没有办法在文本中给出这个坐标的值并将其转换为cllocationcoordinate2d的值?
最佳答案
我不完全清楚您的问题,但如果您想将nsstring转换为cllocationcoordinate2d,可以使用以下命令:
{
[self useLocationString:@"19.14,73.10"];
}
- (void) useLocationString:(NSString*)loc
{
// the location object that we want to initialize based on the string
CLLocationCoordinate2D location;
// split the string by comma
NSArray * locationArray = [loc componentsSeparatedByString: @","];
// set our latitude and longitude based on the two chunks in the string
location.latitude = [[[NSNumber alloc] initWithDouble:[[locationArray objectAtIndex:0] doubleValue]] autorelease];
location.longitude = [[[NSNumber alloc] initWithDouble:[[locationArray objectAtIndex:1] doubleValue]] autorelease];
// do something with the location
}
此代码不检查字符串的有效性,您可以检查从componentsseparatedbystring返回的nsarray。
关于iphone - 如何在谷歌 map 的Objective-C中将文本的nsstring值转换为CLLocationCoordinate2D,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2131567/