zoukankan      html  css  js  c++  java
  • 手机端获取用户详细地理位置(高德地图API)

    项目开发需要获取用户详细的地理位置信息,使用了高德地图API接口

    1,注册高德地图开发者账号获取开发者Key

    2,页面调用

     1 <script type="text/javascript" src="http://webapi.amap.com/maps?v=1.4.3&key=您申请的key值"></script>  

    3,示例代码

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     5     <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
     6     <title>获取地理位置</title>
     7     <style type="text/css">#iCenter{width:300px; height: 280px; border:1px #000 solid;margin:20px auto;}</style>
     8     <script type="text/javascript" src="http://webapi.amap.com/maps?v=1.4.3&key=3df877a70685dac5ecb3afa375d4c305"></script>
     9 </head>
    10 <body>
    11 
    12 <div id="iCenter"></div>
    13 
    14 <script type="text/javascript">
    15     var mapObj = new AMap.Map('iCenter');
    16     mapObj.plugin('AMap.Geolocation', function () {
    17         geolocation = new AMap.Geolocation({
    18             enableHighAccuracy: true, // 是否使用高精度定位,默认:true
    19             timeout: 10000,           // 超过10秒后停止定位,默认:无穷大
    20             maximumAge: 0,            // 定位结果缓存0毫秒,默认:0
    21             convert: true,            // 自动偏移坐标,偏移后的坐标为高德坐标,默认:true
    22             showButton: true,         // 显示定位按钮,默认:true
    23             buttonPosition: 'LB',     // 定位按钮停靠位置,默认:'LB',左下角
    24             buttonOffset: new AMap.Pixel(10, 20), // 定位按钮与设置的停靠位置的偏移量,默认:Pixel(10, 20)
    25             showMarker: true,         // 定位成功后在定位到的位置显示点标记,默认:true
    26             showCircle: true,         // 定位成功后用圆圈表示定位精度范围,默认:true
    27             panToLocation: true,      // 定位成功后将定位到的位置作为地图中心点,默认:true
    28             zoomToAccuracy:true       // 定位成功后调整地图视野范围使定位位置及精度范围视野内可见,默认:false
    29         });
    30         mapObj.addControl(geolocation);
    31         geolocation.getCurrentPosition();
    32         AMap.event.addListener(geolocation, 'complete', onComplete); // 返回定位信息
    33         AMap.event.addListener(geolocation, 'error', onError);       // 返回定位出错信息
    34     });
    35 
    36     function onComplete(obj){
    37         var res = '经纬度:' + obj.position + 
    38                 '
    精度范围:' + obj.accuracy + 
    39                 '米
    定位结果的来源:' + obj.location_type + 
    40                 '
    状态信息:' + obj.info + 
    41                 '
    地址:' + obj.formattedAddress + 
    42                 '
    地址信息:' + JSON.stringify(obj.addressComponent, null, 4);
    43         alert(res);
    44     }
    45 
    46     function onError(obj) {
    47         alert(obj.info + '--' + obj.message);
    48         console.log(obj);
    49     }
    50 </script>
    51 </body>
    52 </html>

    复制代码直接保存到html文件中,在手机端查看具体信息

  • 相关阅读:
    Django2.2中Xadmin错误集
    Asp.Net中MVC缓存详解
    【转】通用sqlserver分页存储过程
    用ASP.NET Web API技术开发HTTP接口(二)
    用ASP.NET Web API技术开发HTTP接口(一)
    关于Excel的读取
    前台取得后台返回的json数据!
    .net淘宝客基础api 分页查询
    Educational Codeforces Round 97 (Rated for Div. 2)
    Codeforces Round #668 (Div. 2)
  • 原文地址:https://www.cnblogs.com/hui9527/p/8340963.html
Copyright © 2011-2022 走看看