JavaScript
0
Вклад в тег
<div class="map_btn" id="geo">Определить местоположение</div>
var a = document.getElementById('geo');
a.onclick = function() {
geolocation.get({
mapStateAutoApply: true
})
.then(
function(result) {
// Получение местоположения пользователя.
var userAddress = result.geoObjects.get(0).properties.get('text');
var userCoodinates = result.geoObjects.get(0).geometry.getCoordinates();
result.geoObjects.get(0).properties.set({
balloonContentBody: 'Адрес: ' + userAddress +
'<br/>Координаты:' + userCoodinates
});
myMap.geoObjects.add(result.geoObjects)
},
function(err) {
console.log('Ошибка: ' + err)
}
);
}