在 Parse.com 中导入 GeoPoints 的正确 json 格式是什么?

What would be the correct json format to import GeoPoints in Parse.com?

我正在尝试将数据集导入 parse.com.com,其中一列中包含 GeoPoints。解析帮助显示 JSON 格式应如下所示:

{ "__type": "GeoPoint", "latitude":64.124596, "longitude":-147.86327 }

但是,当我尝试将其导入数据浏览器时,验证失败,因为 __type 似乎被视为一个单独的列,并且由于起始字符无效,导入失败。

有人可以帮助将 GeoPoints 的正确 JSON 格式导入 Parse 吗?

操作方法如下:

{ "results": [
  {
    "name":"Kfar Saba",
    "location": {"__type": "GeoPoint", "latitude": 32.18406, "longitude": 34.91731}
  },
  {
    "name":"Ar'ara BaNegev",
    "location": {"__type": "GeoPoint", "latitude": 32.5, "longitude": 35.1}
  }
}]