The following is the first 3 results of about 500 I get from a geocoding service, I know from reading multiple posts that my map class is the issue, but I'm not sure how to fix it.
{"spatialReference" : {
"wkid" : 3857 },
"candidates" : [
{
"address" : "155 S MAIN ST, ANYCITY",
"location" : {
"x" : -19374108.693399999,
"y" : 4654619.4226000011
},
"score" : 100,
"attributes" : {
}
},
{
"address" : "1607 S MAIN ST, ANYCITY",
"location" : {
"x" : -19474029.3972,
"y" : 4752774.300499998
},
"score" : 57.999999999999993,
"attributes" : {
}
},
{
"address" : "1615 S MAIN ST, ANYCITY",
"location" : {
"x" : -19474029.3972,
"y" : 6752724.9486000016
},
"score" : 57.999999999999993,
"attributes" : {
}
},
My map class is based off of working examples I have found here, but it is not working:
public class AddressResults {
private List<Candidates> candidates;
// getters and setters
}
public class spatialReference {
private int wkid;
//getters and setters
}
}
class Candidates {
private String address;
private Location location;
private int score;
private String attributes;
//getters and setters
public class Location {
private int x;
private int y;
//getters and setters
}
}
My code to receive the JSON data:
Gson gson = new Gson();
AddressResults ar = gson.fromJson(json, AddressResults.class);
System.out.println(ar);