@Test
public void testGeocoding() throws Exception {
System.out.println("geocoding");
Geocoder coder = new Geocoder();
GLatLng result = coder.geocode("Salzburgerstraße 205, 4030 Linz, Österreich");
Assert.assertNotNull(result);
Assert.assertEquals(48.25763170, result.getLat(), 0.00001);
Assert.assertEquals(14.29231840, result.getLng(), 0.00001);
}
}