|
@@ -64,7 +64,8 @@
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
- //获取手机GPS位置
|
|
|
+ //获取手机GPS位置
|
|
|
+ var locationFlag = true;
|
|
|
function get_mobile_gps_location(onSuccess,onError){
|
|
|
var onSuccess = function(position) {
|
|
|
// alert('Latitude: ' + position.coords.latitude + '\n' +
|
|
@@ -78,8 +79,13 @@
|
|
|
var lnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
|
|
|
userMarker.setPosition(lnglat);
|
|
|
userMarker.setMap(learun.map);
|
|
|
- learun.map.setFitView();
|
|
|
- console.log(lnglat);
|
|
|
+ if(locationFlag){
|
|
|
+ learun.map.setFitView();
|
|
|
+ locationFlag = false;
|
|
|
+ }else{
|
|
|
+ learun.map.setFitView([learun.vehicleMarker]);
|
|
|
+ locationFlag = true;
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
// onError Callback receives a PositionError object
|
|
@@ -94,15 +100,29 @@
|
|
|
var userinfo = learun.storage.get('userinfo');
|
|
|
//上报客户端极光注册信息
|
|
|
function update_jg_registrationid(){
|
|
|
- if(window.lrmui.jgRegistrationId){
|
|
|
- var post_data = {
|
|
|
- "regid":window.lrmui.jgRegistrationId,
|
|
|
- "uid":userinfo.baseinfo.userId
|
|
|
- };
|
|
|
- learun.httppost(config.webapi+'?s=api/update_jg_registrationid',post_data,function(res){
|
|
|
-
|
|
|
- });
|
|
|
- }
|
|
|
+ var onGetRegistrationID = function(data) {
|
|
|
+ try {
|
|
|
+
|
|
|
+ if (data.length == 0) {
|
|
|
+ var t1 = window.setTimeout(getRegistrationID, 1000);
|
|
|
+ }else{
|
|
|
+ console.log("JPushPlugin:registrationID is " + data);
|
|
|
+ var post_data = {
|
|
|
+ "regid":data,
|
|
|
+ "uid":userinfo.baseinfo.userId
|
|
|
+ };
|
|
|
+ learun.httppost(config.webapi+'?s=api/update_jg_registrationid',post_data,function(res){
|
|
|
+ console.log(res.message);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ } catch (exception) {
|
|
|
+ console.log(exception);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ var getRegistrationID = function() {
|
|
|
+ window.JPush.getRegistrationID(onGetRegistrationID);
|
|
|
+ };
|
|
|
+ window.setTimeout(getRegistrationID, 1000);
|
|
|
}
|
|
|
learun.layer.loading(true, "加载数据中");
|
|
|
if(window.lrmui.isreal){
|
|
@@ -121,8 +141,8 @@
|
|
|
|
|
|
var fencePageData = null;
|
|
|
|
|
|
- var userIcon = new AMap.Icon({size: new AMap.Size(50,50), image:'./images/gelocation.png'})
|
|
|
- var userMarker = new AMap.Marker({icon: userIcon, offset:new AMap.Pixel(10, 10),position:[113.952,22.542991]});
|
|
|
+ // var userIcon = new AMap.Icon({size: new AMap.Size(50,50), image:'./images/gelocation.png'})
|
|
|
+ var userMarker = new AMap.Marker({icon: "./images/gelocation.png", offset:new AMap.Pixel(16, -16)});
|
|
|
|
|
|
//车辆信息初始化
|
|
|
learun.timeInterval = 5000;
|