gpt4 book ai didi

ios - 无法指定经纬度方向

转载 作者:行者123 更新时间:2023-11-28 21:30:27 26 4
gpt4 key购买 nike

目前我有两个文本字段,用于保存我的经度和纬度坐标值。虽然出于某种原因,如果我在坐标的末尾输入 N、S、E、W 来指定方向,但它似乎被忽略了,只接受数值,实习生把我带到了错误的位置。

这是我到目前为止所做的。

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
mapview.showsUserLocation = YES;

MKCoordinateRegion region = { {0.0, 0.0}, {0.0,0.0}};
region.center.latitude = [self.myTextField.text floatValue];
region.center.longitude = [self.myTextField1.text floatValue];
region.span.longitudeDelta = 0.01f;
region.span.latitudeDelta = 0.01f;
[mapview setRegion:region animated:YES];


MapPin *ann = [[MapPin alloc] init];
ann.title = @"Test";
ann.subtitle = @"test";
ann.coordinate = region.center;
[mapview addAnnotation:ann];

}

最佳答案

您尝试设置的值为 CLLocationDegrees .要指定赤道以南的纬度或格林威治以西的经度,请使用负数。 floatVlaue property您正在使用的只是丢弃您在末尾键入的字母,因为它们不会被识别为浮点值的一部分。

关于ios - 无法指定经纬度方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36309133/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com