Use https for epsg.io

This commit is contained in:
Tim Schaub
2016-10-16 00:39:07 -06:00
parent 8c8246a33f
commit 324e67fac1
7 changed files with 9 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ function setProjection(code, name, proj4def, bbox) {
function search(query) {
resultSpan.innerHTML = 'Searching ...';
fetch('http://epsg.io/?format=json&q=' + query).then(function(response) {
fetch('https://epsg.io/?format=json&q=' + query).then(function(response) {
return response.json();
}).then(function(json) {
var results = json['results'];