e.get('coords')
from code below, returns coords in decimal format, but I need them in X°Y′Z" format. Is there any way to get this without manual converting?
myMap.events.add('click', setCoords);
function setCoords(e) {
var coords = e.get('coords');
$('#id_lat').val(coords[0]);
$('#id_lon').val(coords[1]);
}
Try function like this: