node-geocoder
Advanced tools
Comparing version 4.0.0 to 4.1.0
@@ -132,3 +132,3 @@ ## 3.0.0 | ||
- Here batchGeocoding using the Here Batch API (#329) | ||
- Integrations test for TomTom, Here and Mapbox | ||
- Integrations test for TomTom, Here and Mapbox | ||
@@ -139,2 +139,6 @@ # 4.0.0 | ||
- Remove http adapter (#332) | ||
- Remove deprecated option from here geocoder (#333) | ||
- Remove deprecated option from here geocoder (#333) | ||
# 4.1.0 | ||
- Changes to LocationIQ API URLs |
@@ -28,4 +28,3 @@ var | ||
LocationIQGeocoder.prototype._endpoint = 'http://locationiq.org/v1'; | ||
LocationIQGeocoder.prototype._endpoint_reverse = 'http://osm1.unwiredlabs.com/locationiq/v1/reverse.php'; | ||
LocationIQGeocoder.prototype._endpoint = 'http://us1.locationiq.com/v1'; | ||
@@ -64,3 +63,3 @@ /** | ||
this.httpAdapter.get(this._endpoint + '/search.php', params, | ||
this.httpAdapter.get(this._endpoint + '/search', params, | ||
function(err, responseData) { | ||
@@ -101,3 +100,3 @@ if (err) { | ||
this.httpAdapter.get(this._endpoint_reverse, params, | ||
this.httpAdapter.get(this._endpoint + '/reverse', params, | ||
function(err, responseData) { | ||
@@ -104,0 +103,0 @@ if (err) { |
{ | ||
"name": "node-geocoder", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
119298
3373