iapp吧 关注:15,967贴子:191,316
  • 1回复贴,共1

获取地理分置

取消只看楼主收藏回复

利用谷歌来获取地理分置


IP属地:浙江来自Android客户端1楼2017-11-14 06:58回复
    ('正在定位...');
    },
    success: function (json) {
    if(json.status=='OK'){
    var results = json.results;
    $.each(results,function(index,array){
    if(index==0){
    $("#google_geo").html(array['formatted_address']);
    }
    });
    }
    },
    error: function (XMLHttpRequest, textStatus, errorThrown) {
    $("#google_geo").html(latlon+"地址位置获取失败");
    }
    });
    }


    IP属地:浙江来自Android客户端3楼2017-11-14 07:00
    回复