如何从JSON在地图上添加这些位置



我的项目正在运行,它显示了设备的当前位置。我的问题是有一个包含4个地址的JSON。我应该把这些地址加在地图上。如何将这些位置添加到JSON的地图中?

此JSON的网站:https://instalyticsdbplandiag814.blob.core.windows.net/mobiversite/location.json

试试这个片段:

try {
JSONObject jsonObject= new JSONObject(jsonAsString);
JSONArray jsonArray=jsonObject.getJSONArray("locations");
for(int i=0;i<jsonArray.length(); i++){
JSONObject item = jsonArray.getJSONObject(i);
String name=item.getString("name");
String lattitude= item.getString("lattitude");
String longitude= item.getString("longitude");

//process as you want
}

} catch (JSONException e) {
e.printStackTrace();
}

相关内容

  • 没有找到相关文章

最新更新