import com.googlecode.mashups.services.generic.api.LocationService;
import com.googlecode.mashups.services.generic.api.PlaceMark;
public class LocationServiceTest extends TestCase {
public void testGetAddressFromLocation() throws Exception {
LocationService locationService = GenericServicesFactory.getLocationService();
try {
PlaceMark placeMark = locationService.getAddressFromLocation("37.4216410", "-122.08550160");
System.out.println("Address for (\"37.4216410\", \"-122.08550160\") is: " + placeMark.getAddress() +
", postalCode is: " + placeMark.getPostalCodeNumber());
} catch (Exception e) {