高德地图无网络连接

馋奶兔 提交于 2019-11-29 06:25:54
let boolean = new Boolean();
$.ajax({
    url: 'https://webapi.amap.com/maps?v=1.4.15&key=您申请的key值',
    success: function(result){
        boolean = true;
    },
    error: function(result){
        alert("无网络连接,暂不支持地图查看!");
        boolean = false;
        $("#servermap").attr("class","hidden");
    }
});
if (boolean) {
    document.getElementById("test").innerHTML = '<object type="text/html" data="GaodeMap.html" width="100%" height="100%"></object>';
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!