H5定位地理位置

if (navigator.geolocation) {


    console.log("h5 定位中");

    navigator.geolocation.getCurrentPosition(function(position) {

        var latitude  = position.coords.latitude;

        var longitude = position.coords.longitude;

        alert(latitude)

        alert(longitude)

        alert('h5定位成功;');

    }, function(error) {

        console.log('h5定失败;');

    })

}

我直接在静态文件中打开为什么不行
总是打印定位失败

但是在手机上是可以的

浏览器也是支持的啊 为什么不能定位


梦里花落0921
浏览 1071回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript