• Cordova插件开发:集成南方测绘RTK实现高精度卫星定位


    1.最终效果预览

    说明:南方测绘RTK设备厂家提供的SDK中封装了蓝牙搜索连接、Cross账号登录等功能,我们通过Cordova插件进一步封装以便于我们可以在js中调用,目前项中实现了普通手机坐标定位(高德)、高精度差分设备模块定位(卫星数据)、手机获取南方测绘RTK硬件设备定位(蓝牙连接)这几种方式,后续应该会对接更多的RTK厂家。

    2.页面持续展示获取的坐标

            let dTValue = localStorage.getItem("deviceType") || "0"
            if (parseInt(dTValue) > 1) {
                this.isHighPrecision = true
                let obj = Object.assign({}, this.mapConfig.mapLocationObj)
                obj.isKeepCallBack = true
                let res = await this.utilsTools.getXYLocationDataByDeviceType(obj)
                if (res && res["code"] == "200") {
                    this.showHighData(res)
                }
            } else {
                this.isHighPrecision = false
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    说明:isHighPrecision为true页面顶部展示经纬度及高程模块,其他模式不展示,模式的设定单独一个页面,不同的模式存值deviceType不同,并且要方便之后拓展对接不同的厂商,获取到坐标数据res后我们将数据传递到showHighData方法中在页面展示,在mapLocationObj中配置了插件封装的参数,示例如下

    public mapLocationObj = {
    		packageName: 'com.xxx.xxx',
    		delayTime: 300,
    		intervalTime: 500,
    		rodHeight: '0.0',
    		isKeepCallBack: false,
    		paramKey: 'getKeepData'
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    目前插件定义了六个值,并且之后扩展的话直接加参数就行,delayTime为插件请求方法的延迟时间,intervalTime为请求插件的间隔时间,rodHeight可作为页面设置杆高数值,isKeepCallBack为true表示持续返回坐标数据,false表示只获取一次坐标数据,paramKey参数的值代表执行插件中不同的方法

    3.公共类utilsTools中封装得获取坐标方法

    async getXYLocationDataByDeviceType(obj) {
    		let res;
    		if (this.isAndroid()) {
    			if (localStorage.getItem('deviceType') == '2') {
    				res = await this.returnNmeaDataNew(obj)
    			} else if (localStorage.getItem('deviceType') == '3') {
    				res = await this.settingRTKLocation(obj)
    			} else {
    				res = await this.returnGaoDeData()
    			}
    		} else {
    			res = {
    				latitude: 0,
    				longitude: 0,
    				altitude: 0,
    				gpsStatue: 0,
    				code: 500,
    			}
    		}
    		return res
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    目前插件只开发Android版本,浏览器或者IOS返回默认值0,当deviceType为3我们调用了南方测绘RTK获取坐标方式

    4.南方测绘坐标获取封装

    settingRTKLocation(obj) {
        return new Promise((resolve, reject) => {
    		        RTKlocationManager.settingRTKLocation(obj, res => {
    				      resolve(res)
    			    }, fail => {
    				    reject(fail)
    			    })
    		    });
    	   }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    5.插件js方法封装

    settingRTKLocation:function(options,onSuccess,onError){
    			exec(onSuccess, onError, "RTKlocationManager", "settingRTKLocation", [options]);
    	}
    
    • 1
    • 2
    • 3

    6.Java方法封装

    方法入口

     public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
            if("settingRTKLocation".equals(action)){
                message = args.getJSONObject(0);
                isKeepCallBack = message.getBoolean("isKeepCallBack")||false;
                paramKey =  message.getString("paramKey");
                this.getLocation();
                this.goPageByParam(callbackContext,paramKey);
                return true;
            }
            return false;
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    根据参数不同调用不同的方法

      private void goPageByParam(CallbackContext callbackContext, String key){
            singleLocaitonCC = callbackContext;
            switch (key) {
                case "connected":
                    SdkServiceApi.startConnectedActivity();
                    break;
                ......
                case "getKeepData":
                    updateView();
                    break;
            }
    
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    更新坐标数据

    void updateView() {
            String s = "解状态:";
            switch (gpsStatue) {
                case 0:
                    s += "无效解";
                    break;
                case 1:
                    s += "单点解";
                    break;
                case 2:
                    s += "差分解";
                    break;
                case 4:
                    s += "固定解";
                    break;
                case 5:
                    s += "浮点解";
                    break;
            }
            gpsStatueStr = s;
            try {
                if (null != singleLocaitonCC) {
                    PositionInfo();
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    
    • 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

    实现单次定位委托

        public void PositionInfo() throws JSONException {
            sendPositionInfo(singleLocaitonCC);
        }
    
    • 1
    • 2
    • 3

    返回定位数据

       public void sendPositionInfo(CallbackContext c) throws JSONException {
            if(0.0 == latitude){
                try {
                    Thread.sleep(delayTime);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            if(!isKeepCallBack){
                locationDestory();
            }
            JSONObject json = new JSONObject();
            json.put("latitude",latitude);
            json.put("longitude",longitude);
            json.put("altitude",altitude);
    		      json.put("hrms",hrms);
    		      json.put("vrms",vrms);
    		      json.put("rms",rms);
            json.put("type","rtkGps");
    		      json.put("gpsStatue",gpsStatue);
            if (0.0 != latitude) {
                json.put("code", "200");
                PluginResult pluginResult = new PluginResult(PluginResult.Status.OK, json);
                pluginResult.setKeepCallback(isKeepCallBack);
                c.sendPluginResult(pluginResult);
            } else {
                json.put("code", "500");
                PluginResult pluginResult = new PluginResult(PluginResult.Status.ERROR, json);
                pluginResult.setKeepCallback(isKeepCallBack);
                c.sendPluginResult(pluginResult);
            }
        }
    
    • 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
  • 相关阅读:
    Nginx 部署 配置
    【Java】 Java设计模式
    极速进化,融合“新“生 | StarRocks Summit 2023 技术交流峰会圆满落幕
    【阿里云】图像识别 摄像模块 语音模块
    RabbitMQ的架构模型
    flask celery定时任务
    Tomcat多实例部署和动静分离
    tomcat (SCI)ServletContainerInitializer 的加载原理
    VMware 虚拟机安装 OpenWrt 作旁路由 单臂路由 img 镜像转 vmdk 旁路由无法上网 没网络
    <Linux>(极简关键、省时省力)《Linux操作系统原理分析之Linux 进程管理 1》(5)
  • 原文地址:https://blog.csdn.net/qq_16497617/article/details/133178002