Skip to content

Instantly share code, notes, and snippets.

@casidiablo
Created March 28, 2011 18:24
Show Gist options
  • Save casidiablo/890974 to your computer and use it in GitHub Desktop.
Save casidiablo/890974 to your computer and use it in GitHub Desktop.
JSONArray data = jObject.getJSONArray("data");
JSONObject location = data.getJSONObject(0).getJSONObject("place").getJSONObject("location");
String lat = location.getString("latitude");
String lon = location.getString("longitude");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment