diff options
Diffstat (limited to 'src/org/traccar/geocode/GisgraphyReverseGeocoder.java')
-rw-r--r-- | src/org/traccar/geocode/GisgraphyReverseGeocoder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/geocode/GisgraphyReverseGeocoder.java b/src/org/traccar/geocode/GisgraphyReverseGeocoder.java index 392a11e66..6e0e5a343 100644 --- a/src/org/traccar/geocode/GisgraphyReverseGeocoder.java +++ b/src/org/traccar/geocode/GisgraphyReverseGeocoder.java @@ -26,11 +26,11 @@ import java.net.URLConnection; public class GisgraphyReverseGeocoder extends JsonReverseGeocoder { public GisgraphyReverseGeocoder() { - this("http://services.gisgraphy.com/street/streetsearch"); + this("http://services.gisgraphy.com/street/streetsearch", 0); } - public GisgraphyReverseGeocoder(String url) { - super(url + "?format=json&lat=%f&lng=%f&from=1&to=1"); + public GisgraphyReverseGeocoder(String url, int cacheSize) { + super(url + "?format=json&lat=%f&lng=%f&from=1&to=1", cacheSize); } @Override |