Quellcode durchsuchen

fix switch error

git vor 6 Jahren
Ursprung
Commit
41471a8f0b
4 geänderte Dateien mit 26 neuen und 13 gelöschten Zeilen
  1. 14 12
      pages/amap/amap.js
  2. 2 1
      pages/amap/navigation/navigation.js
  3. 1 0
      pages/login/login.html
  4. 9 0
      scripts/lrmui.js

+ 14 - 12
pages/amap/amap.js

@@ -67,14 +67,19 @@
 			//获取手机GPS位置
 			function get_mobile_gps_location(onSuccess,onError){
 				var onSuccess = function(position) {
-					alert('Latitude: '          + position.coords.latitude          + '\n' +
-						  'Longitude: '         + position.coords.longitude         + '\n' +
-						  'Altitude: '          + position.coords.altitude          + '\n' +
-						  'Accuracy: '          + position.coords.accuracy          + '\n' +
-						  'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
-						  'Heading: '           + position.coords.heading           + '\n' +
-						  'Speed: '             + position.coords.speed             + '\n' +
-						  'Timestamp: '         + position.timestamp                + '\n');
+					// alert('Latitude: '          + position.coords.latitude          + '\n' +
+					// 	  'Longitude: '         + position.coords.longitude         + '\n' +
+					// 	  'Altitude: '          + position.coords.altitude          + '\n' +
+					// 	  'Accuracy: '          + position.coords.accuracy          + '\n' +
+					// 	  'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
+					// 	  'Heading: '           + position.coords.heading           + '\n' +
+					// 	  'Speed: '             + position.coords.speed             + '\n' +
+                    // 	  'Timestamp: '         + position.timestamp                + '\n');
+                    var lnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
+                    userMarker.setPosition(lnglat);
+                    userMarker.setMap(learun.map);
+                    learun.map.setFitView();
+                    console.log(lnglat);
 				};
 			 
 				// onError Callback receives a PositionError object
@@ -202,10 +207,7 @@
             $page.find('#user-location').on('tap', function(){
                 get_mobile_gps_location(function(position){
                     // position.coords.latitude
-                    var lnglat = new AMap.LngLat(position.coords.longitude, position.coords.latitude);
-                    userMarker.setPosition(lnglat);
-                    userMarker.setMap(learun.map);
-                    learun.map.setFitView();
+
                 });
             });
             

+ 2 - 1
pages/amap/navigation/navigation.js

@@ -10,7 +10,8 @@
             //骑行导航
            var riding = new AMap.Riding({
                 map: map,
-                panel: "navg-panel"
+                panel: "navg-panel",
+                autoFitView: true
             }); 
             //根据起终点坐标规划骑行路线
             riding.search(param.start, param.end, function(status, result) {

+ 1 - 0
pages/login/login.html

@@ -15,6 +15,7 @@
         <button id="loginBtn" type="button" class="lr-btn-primary lr-btn-block">
             登录
         </button>
+		<br/>
 		<div style="padding-left:10px;">
 			<button type="button" class="lr-btn-link" id="register">
 				立即注册

+ 9 - 0
scripts/lrmui.js

@@ -917,6 +917,15 @@ u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(
         });
         return $this.fswitch();
     };
+	// 开关插件(初始化)
+    $.fn.rlswitch = function () {
+        var $this = $(this);
+        $this.attr('type', 'lrswitch');
+        $this.on('tap', function () {
+            //learun.formblur();
+        });
+        return $this.fswitch();
+    };
     // 开关插件(设置值)1选中 0 没有选中
     $.fn.lrswitchSet = function (value) {
         $(this).fswitchSet(value);