if(httpRetCode == HttpStatus.SC_OK){
String responseBodyAsString = locateAddressGET.getResponseBodyAsString();
ObjectMapper mapper = new ObjectMapper();
mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
mapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true);
mapper.configure(JsonParser.Feature.ALLOW_COMMENTS, true);
JsonNode jsonRoot = mapper.readTree(responseBodyAsString);
JsonNode location = jsonRoot.path("results").get(0).path("geometry").path("location");
JsonNode lat = location.get("lat");
JsonNode lng = location.get("lng");
coordinates = new LatLng(lat.asDouble(),lng.asDouble());