【发布时间】:2017-06-14 01:54:51
【问题描述】:
我正在尝试将坐标存储在数组中。代码运行良好,但是每次迭代新实现的坐标后,数组计数仍然保持不变?
let manager = CLLocationManager()
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let location = locations[0]
let span:MKCoordinateSpan = MKCoordinateSpanMake(0.01,0.01) //shows the size of map screen
let myLocation:CLLocationCoordinate2D = CLLocationCoordinate2DMake(location.coordinate.latitude,location.coordinate.longitude)
let region:MKCoordinateRegion = MKCoordinateRegionMake(myLocation, span)
map.setRegion(region, animated: true)
self.map.showsUserLocation = true
let LAT = Double(location.coordinate.latitude)
let LONG = Double(location.coordinate.longitude)
var locationArray = [Double]()
locationArray.insert(contentsOf: [LAT, LONG], at: 0)
print(locationArray.count)
【问题讨论】:
标签: arrays swift insert coordinates