Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-geocoder

Package Overview
Dependencies
Maintainers
1
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-geocoder - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

8

CHANGELOG.md

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc