美文网首页
(17.05.22)(43)geolocation地理位置、获取

(17.05.22)(43)geolocation地理位置、获取

作者: 张不困_ | 来源:发表于2017-11-19 15:23 被阅读0次

    geolocation        地理位置
        大数据统计
        生活
            滴滴     摩拜单车    美团外卖    导航
        社交
            微信    陌陌    探探     QQ

    必须放在服务器环境

        PC        IP地址
        移动设备    GPS定位

    window.navigator.geolocation

        获取当前位置:只能获取一次

            .getCurrentPosition(function(pos){
                pos.coords      //位置信息
    
                longitude           经度
                latitude            纬度
                accuracy            精准度
                altitude            海拔
                altitudeAccuracy    海拔精准度
                heading             朝向
                speed               速度
            });
    

        实时获取位置

            .watchPosition(function(pos){
                pos.coords
            })
                或者
                    setInterval(function(){
                        navigator.getCurrentPosition(function(pos){
                            pos.coords;
                        });
                    },3000);
    
    
            .clearWatch()
    

    116.5153731,39.7835112


    文件拖拽
        ondragenter
            拖进去
        ondragleave
            拖出来

        ondragover         悬浮

        ondrop        释放鼠标触发
        return false;    阻止浏览器的默认行为

        ondrop不触发
            只有把ondragover的默认行为阻止,ondrop才会触发

    相关文章

      网友评论

          本文标题:(17.05.22)(43)geolocation地理位置、获取

          本文链接:https://www.haomeiwen.com/subject/hgtpvxtx.html