Skip to content

Commit 65612fc

Browse files
authored
Add SSL to API endpoint (api.tomtom.com)
- See API documentation: https://developer.tomtom.com/online-search/online-search-documentation-geocoding/geocode
1 parent c2c29b1 commit 65612fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/geocoder/tomtomgeocoder.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ var TomTomGeocoder = function TomTomGeocoder(httpAdapter, options) {
1818
util.inherits(TomTomGeocoder, AbstractGeocoder);
1919

2020
// TomTom geocoding API endpoint
21-
TomTomGeocoder.prototype._endpoint = 'http://api.tomtom.com/lbs/geocoding/geocode';
21+
TomTomGeocoder.prototype._endpoint = 'https://api.tomtom.com/lbs/geocoding/geocode';
22+
//
2223

2324
/**
2425
* Geocode

0 commit comments

Comments
 (0)