We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Библиотеку нельзя использовать на сайте с "https". Пожалуйста, сделайте такую возможность!
Под капотом библиотеки выполняется запрос: http://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru А вот такое не пашет: https://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru Отсюда получаем проблемы... И классическую ошибку браузера:
Mixed Content: бла-бла-бла was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru'. This request has been blocked; the content must be served over HTTPS.
The text was updated successfully, but these errors were encountered:
Можно, целых два варианта есть
osmeRegions.setHost('https://osme.geolocated.org/regions/v1/');
Sorry, something went wrong.
Проблему решил... Там в коде библиотеки есть небольшая неправильность... Должно быть написано так:
var settings = { HOST: window.location.protocol === 'https:' ? 'https://osme.geolocated.org/regions/v1/' : 'http://data.esosedi.org/regions/v1/', GEOCODEHOST: window.location.protocol === 'https:' ? 'https://osme.geolocated.org/geocode/v1' : 'http://data.esosedi.org/geocode/v1',
И еще, там есть метод setHost(), а вот метод setGeocodeHost() отсутствует, если уж совсем придираться... Спасибо за оперативный ответ!
No branches or pull requests
Библиотеку нельзя использовать на сайте с "https".
Пожалуйста, сделайте такую возможность!
Под капотом библиотеки выполняется запрос:
http://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru
А вот такое не пашет:
https://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru
Отсюда получаем проблемы... И классическую ошибку браузера:
Mixed Content: бла-бла-бла was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://data.esosedi.org/geocode/v1?point=57.153033,65.534328&lng=ru'. This request has been blocked; the content must be served over HTTPS.
The text was updated successfully, but these errors were encountered: