Swift4:我想重新排列API从我的位置获取的JSON

时间:2018-09-20 02:46:50

标签: ios json swift geolocation

感谢您观看我的问题。

我的iOS应用程序流程。当您按类别按钮时,该类别中商店的数据将返回JSON。纬度和经度包含在商店的数据中。根据这种经度和纬度,我想重新排列JSON的内容,以便您可以从我的位置开始按顺序显示商店。

我正在搜索示例代码,但找不到。

请告诉我。

谢谢。

JSON数据

{
"id": 1,
"name": "Barth day",
"created_at": "2018-08-09 10:00:58",
"updated_at": "2018-08-09 10:00:58",
"stores": [
    {
        "id": 1,
        "name": "Pink Cafe Tokyo",
        "location": "Tokyo",
        "price": "1000~3000",
        "open_time": "10:00-14:00",
        "closed_day": "月曜日",
        "created_at": "2018-08-09 10:03:52",
        "updated_at": "2018-08-09 10:03:52",
        "tellNumber": "09012345678",
        "lat": 35.662163,
        "lng": 139.744629,
        "pivot": {
            "store_id": 1,
            "category_id": 1
        },
        "tags": [
            {
                "id": 1,
                "name": "Sweets",
                "created_at": "2018-08-09 10:00:58",
                "updated_at": "2018-08-09 10:00:58",
                "pivot": {
                    "tag_id": 1,
                    "store_id": 1
                }
            },
            {
                "id": 13,
                "name": "Pink Cafe",
                "created_at": "2018-08-09 10:00:58",
                "updated_at": "2018-08-09 10:00:58",
                "pivot": {
                    "tag_id": 1,
                    "store_id": 13
                }
            },
            {
                "id": 14,
                "name": "Concept Cafe",
                "created_at": "2018-08-09 10:00:58",
                "updated_at": "2018-08-09 10:00:58",
                "pivot": {
                    "tag_id": 1,
                    "store_id": 14
                }
            }
        ],
        "photos": [
            {
                "id": 1,
                "store_id": 1,
                "path": "photos/Pink%20Cafe%20Tokyo_0.jpeg",
                "created_at": "2018-08-09 10:03:52",
                "updated_at": "2018-08-09 10:03:52"
            }
        ]
    }
    }

1 个答案:

答案 0 :(得分:2)

考虑到您有一个struct映射到以lat和lng作为其属性的商店对象,如下所示

struct Store {
 // other attributes
  var lat: CLLocationDegrees
  var lng: CLLocationDegrees
}

另外,您在名为currentLocation的属性中具有当前位置。

现在在商店中,要根据与当前位置的距离对对象进行排序,可以使用下面的代码

arrOfStores.sort { (obj1, obj2) -> Bool in
            let a = CLLocation(latitude: obj1.lat, longitude: obj1.lng)
            let b = CLLocation(latitude: obj2.lat, longitude: obj2.lng)
            return currentLocation.distance(from: a) < currentLocation.distance(from: b)

        }

现在,您的商店阵列与当前位置的距离为升序。