Limesurvey - выберите URL опроса, предлагает пользователю разрешить или заблокировать расположениеLime Survey - геолокация ответа (город, страна) Params возвращается в конец URL
т.е.. сценарий геолокации запустить & вернуть текущий город & страна в конце URL.
Возможно или нет. Ниже приведен мой сценарий, как реализовать это в обзоре извести.
Любые предложения, пожалуйста,
<script type="text/javascript">
var geocoder;
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
}
function initMap(){
}
//Get the latitude and the longitude;
function successFunction(position) {
var lat = position.coords.latitude;
var lng = position.coords.longitude;
codeLatLng(lat, lng)
}
function errorFunction(){
alert("Geocoder failed");
}
function codeLatLng(lat, lng) {
alert("Latitude: "+lat);
alert("Longtude: "+lng);
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(lat, lng);
geocoder.geocode({'latLng': latlng}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
//console.log(results)
if (results[1]) {
//formatted address
alert(results[0].formatted_address)
//find country name
for (var i=0; i<results[0].address_components.length; i++) {
for (var b=0;b<results[0].address_components[i].types.length;b++) {
//there are different types that might hold a city admin_area_lvl_1 usually does in come cases looking for sublocality type will be more appropriate
if (results[0].address_components[i].types[b] == "administrative_area_level_1") {
//this is the object you are looking for
city= results[0].address_components[i];
break;
}
if(results[0].address_components[i].types[b] == 'country'){
country = results[0].address_components[i];
break;
}
}
}
//city data
alert(city.short_name + " " + city.long_name)
//country data
alert(country.short_name + " " + country.long_name)
} else {
alert("No results found");
}
} else {
alert("Geocoder failed due to: " + status);
}
});
} </script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=initMap"
type="text/javascript"></script>
Любая помощь? Заранее спасибо.
Денис, у вас есть опечатка во втором селекторе - должно быть $ ("# answer {SGQ} COUNTRY") – tpartner
Да, исправлено. Но глядя на оригинальный код js: unsure он работает здесь;) –
Денис, большое вам спасибо, можно хранить город, страну в таблице ответов извести, когда я отправляю опрос. –