function getloc() {
navigator.geolocation.getCurrentPosition(updateLocation_m, handleLocationError_m);
}
function updateLocation_m(position) {
str_lat = position.coords.latitude;
str_lng = position.coords.longitude;
$('#comp_list').append("3");
//get_aound_hospital(str_lat,str_lng);
}
function handleLocationError_m(error) {
alert('위치서비스를 허용해 주세요.');
//get_aound_hospital(str_lat,str_lng);
$('#subcon1').append('');
$('#comp_list').append(error);
}
function get_aound_hospital(str_lat,str_lng){
$.post("/get_main_hospital.php",{lat:str_lat,lng:str_lng},function(data){
$('.my_around').html(data);
});
}
댓글