gpt4 book ai didi

ios - 在运行时设置位置模拟器 City/GPX

转载 作者:搜寻专家 更新时间:2023-10-30 22:00:06 25 4
gpt4 key购买 nike

有没有一种方法可以在运行时以编程方式更改位置模拟器城市?例如,这将允许测试模拟伦敦或东京。

下图显示了如何手动切换位置(GPX 文件)。如何在应用程序运行时以编程方式实现此结果?

enter image description here

最佳答案

另一种设置位置的方法是通过混合“CLLocationManager”类的“位置”。在 obj-c 中,

+(void) load {
// replace 'location' with 'custom_location' method
}

然后通过简单地更改“kMockedLatitude”和“kMockedLongitude”变量,使用您想要设置的任何位置实现 custom_location 方法。

//Portland, USA
CLLocationDegrees kMockedLatitude = 45.52306;
CLLocationDegrees kMockedLongitude = -122.67648;

-(CLLocation *)custom_location
{
return [[CLLocation alloc] initWithLatitude:kMockedLatitude longitude:kMockedLongitude];
}

这甚至可以在 iOS 设备上使用。

关于ios - 在运行时设置位置模拟器 City/GPX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38352453/

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