• 关于前端地图笔记


    坐标系

    • 地球坐标系——WGS84:常见于 GPS 设备,Google 地图等国际标准的坐标体系。
    • 火星坐标系——GCJ-02:中国国内使用的被强制加密后的坐标体系,高德坐标、腾讯地图。
    • 百度坐标系——BD-09:百度地图所使用的坐标体系,是在火星坐标系的基础上又进行了一次加密处理。

    坐标系转换

    1. 使用代码转化
    
    /**
     *  判断经纬度是否超出中国境内
     */
    function isLocationOutOfChina(latitude, longitude) {
      if (longitude < 72.004 || longitude > 137.8347 || latitude < 0.8293 || latitude > 55.8271)
        return true;
      return false;
    }
    
    
    /**
     *  将WGS-84(国际标准)转为GCJ-02(火星坐标):
     */
    function transformFromWGSToGCJ(latitude, longitude) {
      var lat = "";
      var lon = "";
      var ee = 0.00669342162296594323;
      var a = 6378245.0;
      var pi = 3.14159265358979324;
    
      if (isLocationOutOfChina(latitude, longitude)) {
        lat = latitude;
        lon = longitude;
      }
      else {
        var adjustLat = transformLatWithXY(longitude - 105.0, latitude - 35.0);
        var adjustLon = transformLonWithXY(longitude - 105.0, latitude - 35.0);
        var radLat = latitude / 180.0 * pi;
        var magic = Math.sin(radLat);
        magic = 1 - ee * magic * magic;
        var sqrtMagic = Math.sqrt(magic);
        adjustLat = (adjustLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);
        adjustLon = (adjustLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi);
        latitude = latitude + adjustLat;
        longitude = longitude + adjustLon;
      }
      return { latitude: latitude, longitude: longitude };
    
    }
    
    /**
     *  将GCJ-02(火星坐标)转为百度坐标:
     */
    function transformFromGCJToBaidu(latitude, longitude) {  
      var pi = 3.14159265358979324 * 3000.0 / 180.0;
    
      var z = Math.sqrt(longitude * longitude + latitude * latitude) + 0.00002 * Math.sin(latitude * pi);
      var theta = Math.atan2(latitude, longitude) + 0.000003 * Math.cos(longitude * pi);
      var a_latitude = (z * Math.sin(theta) + 0.006);
      var a_longitude = (z * Math.cos(theta) + 0.0065);
    
      return { latitude: a_latitude, longitude: a_longitude };
    }
    
    /**
     *  将百度坐标转为GCJ-02(火星坐标):
     */
    function transformFromBaiduToGCJ(latitude, longitude) {
      var xPi = 3.14159265358979323846264338327950288 * 3000.0 / 180.0;
    
      var x = longitude - 0.0065;
      var y = latitude - 0.006;
      var z = Math.sqrt(x * x + y * y) - 0.00002 * Math.sin(y * xPi);
      var theta = Math.atan2(y, x) - 0.000003 * Math.cos(x * xPi);
      var a_latitude = z * Math.sin(theta);
      var a_longitude = z * Math.cos(theta);
    
      return { latitude: a_latitude, longitude: a_longitude };
    }
    
    /**
     *  将GCJ-02(火星坐标)转为WGS-84:
     */
    function transformFromGCJToWGS(latitude, longitude) {
      var threshold = 0.00001;
    
      // The boundary
      var minLat = latitude - 0.5;
      var maxLat = latitude + 0.5;
      var minLng = longitude - 0.5;
      var maxLng = longitude + 0.5;
    
      var delta = 1;
      var maxIteration = 30;
    
      while (true) {
        var leftBottom = transformFromWGSToGCJ(minLat, minLng);
        var rightBottom = transformFromWGSToGCJ(minLat, maxLng);
        var leftUp = transformFromWGSToGCJ(maxLat, minLng);
        var midPoint = transformFromWGSToGCJ((minLat + maxLat) / 2, (minLng + maxLng) / 2);
        delta = Math.abs(midPoint.latitude - latitude) + Math.abs(midPoint.longitude - longitude);
    
        if (maxIteration-- <= 0 || delta <= threshold) {
          return { latitude: (minLat + maxLat) / 2, longitude: (minLng + maxLng) / 2 };
        }
    
        if (isContains({ latitude: latitude, longitude: longitude }, leftBottom, midPoint)) {
          maxLat = (minLat + maxLat) / 2;
          maxLng = (minLng + maxLng) / 2;
        }
        else if (isContains({ latitude: latitude, longitude: longitude }, rightBottom, midPoint)) {
          maxLat = (minLat + maxLat) / 2;
          minLng = (minLng + maxLng) / 2;
        }
        else if (isContains({ latitude: latitude, longitude: longitude }, leftUp, midPoint)) {
          minLat = (minLat + maxLat) / 2;
          maxLng = (minLng + maxLng) / 2;
        }
        else {
          minLat = (minLat + maxLat) / 2;
          minLng = (minLng + maxLng) / 2;
        }
      }
    
    }
    
    function isContains(point, p1, p2) {
      return (point.latitude >= Math.min(p1.latitude, p2.latitude) && point.latitude <= Math.max(p1.latitude, p2.latitude)) && (point.longitude >= Math.min(p1.longitude, p2.longitude) && point.longitude <= Math.max(p1.longitude, p2.longitude));
    }
    
    function transformLatWithXY(x, y) {
      var pi = 3.14159265358979324;
      var lat = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * Math.sqrt(Math.abs(x));
      lat += (20.0 * Math.sin(6.0 * x * pi) + 20.0 * Math.sin(2.0 * x * pi)) * 2.0 / 3.0;
      lat += (20.0 * Math.sin(y * pi) + 40.0 * Math.sin(y / 3.0 * pi)) * 2.0 / 3.0;
      lat += (160.0 * Math.sin(y / 12.0 * pi) + 320 * Math.sin(y * pi / 30.0)) * 2.0 / 3.0;
      return lat;
    }
    
    function transformLonWithXY(x, y) {
      var pi = 3.14159265358979324;
      var lon = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * Math.sqrt(Math.abs(x));
      lon += (20.0 * Math.sin(6.0 * x * pi) + 20.0 * Math.sin(2.0 * x * pi)) * 2.0 / 3.0;
      lon += (20.0 * Math.sin(x * pi) + 40.0 * Math.sin(x / 3.0 * pi)) * 2.0 / 3.0;
      lon += (150.0 * Math.sin(x / 12.0 * pi) + 300.0 * Math.sin(x / 30.0 * pi)) * 2.0 / 3.0;
      return lon;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    1. 通过官方的api转化(这个会更精准点)
      其他坐标转高德坐标api:https://lbs.amap.com/api/webservice/guide/api/convert
      百度开发api:https://lbs.baidu.com/faq/api?title=webapi/guide/changeposition-base
      其他左边转腾讯坐标api: https://lbs.qq.com/service/webService/webServiceGuide/webServiceTranslate
  • 相关阅读:
    vue中封装el-table表格
    在PowerBI中提取IFC文件中的数据
    java string.split(“,“)方法的坑
    docker的简介--安装--操作命令
    NLP 03(LSTM)
    OSI和TCP的握手/挥手
    华为云智能化组装式交付方案 ——金融级PaaS业务洞察及Web3实践的卓越贡献
    计算机毕业设计django基于python企业对账分析系统(源码+系统+mysql数据库+Lw文档)
    MySQL数据库用户管理
    Spring MVC 请求参数绑定
  • 原文地址:https://blog.csdn.net/weixin_44284981/article/details/134375926