1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package org.traccar.geocode;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class ReverseGeocoderTest {
/*@Test
public void testGoogle() {
ReverseGeocoder reverseGeocoder = new GoogleReverseGeocoder();
assertEquals(
"1600 Amphitheatre Pkwy, Mountain View, CA, US",
reverseGeocoder.getAddress(new AddressFormat(), 37.4217550, -122.0846330));
}
@Test
public void testNominatim() {
ReverseGeocoder reverseGeocoder = new NominatimReverseGeocoder();
assertEquals(
"35 West 9th Street, NYC, New York, US",
reverseGeocoder.getAddress(new AddressFormat(), 40.7337807, -73.9974401));
}
@Test
public void testGisgraphy() {
ReverseGeocoder reverseGeocoder = new GisgraphyReverseGeocoder();
assertEquals(
"Rue du Jardinet, Paris, FR",
reverseGeocoder.getAddress(new AddressFormat(), 48.8530000, 2.3400000));
}*/
}
|