// display the result in map callout
String msg = "Address:"
+ result.getAddressFields().get("Address")
+ "\n" + "City:"
+ result.getAddressFields().get("City") + "\n"
+ " State:"
+ result.getAddressFields().get("State") + "\n"
+ " Zip:"
+ result.getAddressFields().get("Zip");
map.getCallout().show(locationPoint, message(msg));