I feel dumb but I\'ve been looking around for this for a while. I\'m working with the google geocoder API and I need a bit of help with the json responses. Here is a JSONObje
You should create Class Location to pull the "location" subfields.
public class Location { private double lat; private double lng; @JsonCreator public Location(@JsonProperty("lat") double lat, @JsonProperty("lng") double lng { this.lat = lat; this.lngenter code here = lng; }