diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.cshtml
index 510efcb07..a5523ed93 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.cshtml
@@ -97,6 +97,7 @@
请输入地址进行搜索:
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.js
index db7b7b36d..c0a8d7463 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/ADR_Restriction/Form.js
@@ -73,7 +73,6 @@ var bootstrap = function ($, learun) {
initMap()
}
function initMap() {
- console.log($('#GPSRange').val())
var currentPoint = $('#GPSLon').val() && $('#GPSLat').val() ? { lng: $('#GPSLon').val(), lat: $('#GPSLat').val()} : {}, //经纬度 {lng,lat}
radius = $('#GPSRange').val() || 20, //打卡距离(m)
map = new BMapGL.Map("container", {
@@ -212,7 +211,6 @@ var bootstrap = function ($, learun) {
//有数据时候添加覆盖物
if ($('#GPSLon').val() && $('#GPSLat').val()) {
map.clearOverlays(); //清除地图上所有覆盖物
- console.log(currentPoint)
var marker = new BMapGL.Marker(point); // 创建标注
map.addOverlay(marker); // 将标注添加到地图中
setCircle(currentPoint)//设置圆