简单地用一句话概括就是,使用js获取浏览器当前所在的地理坐标,实现LBS(Location Based Service,基于定位的服务). 下面写一下它的基本调用: if(navigator.geolocation){ navigator.geolocation.getCurrentPosition(successFn,errorFn,{ enableHighAccuracy:true,//获得高精度位置,默认为false timeout:5000,//获取地理位置的超时时间,默认不限时 max…