|
@@ -112,7 +112,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
- var startEnd = {start:new AMap.LngLat(113.951104,22.542902), end:new AMap.LngLat(113.955439,22.542956)};
|
|
|
+ var startEnd = {start:new AMap.LngLat(113.951104,22.542902), end:new AMap.LngLat(113.955439,22.532956)};
|
|
|
|
|
|
var fencePageData = null;
|
|
|
|
|
@@ -128,6 +128,8 @@
|
|
|
});
|
|
|
learun.vehicleMarker = new AMap.Marker({icon:'./images/bicycle.png', offset:new AMap.Pixel(0, -51)});
|
|
|
learun.circle = new AMap.Circle({
|
|
|
+ radius: 0,
|
|
|
+ center: [0, 0],
|
|
|
borderWeight: 3,
|
|
|
strokeColor: "#FF33FF",
|
|
|
strokeOpacity: 1,
|
|
@@ -141,6 +143,8 @@
|
|
|
zIndex: 50,
|
|
|
});
|
|
|
|
|
|
+ learun.circle.setMap(learun.map);
|
|
|
+
|
|
|
// learun.vehicleInfoWin = new AMap.InfoWindow({
|
|
|
// isCustom: true,
|
|
|
// offset: new AMap.Pixel(60, -40),
|
|
@@ -153,14 +157,11 @@
|
|
|
var deviceNumber = 'A00000000031';
|
|
|
var mapData = null;
|
|
|
learun.httpget(config.webapi+"/?s=api/get_map_index_data", {deviceNumber:deviceNumber}, function (_res) {
|
|
|
- console.log("******** "+JSON.stringify(_res));
|
|
|
- // console.log(_res);
|
|
|
mapData = _res.data;
|
|
|
if(!mapData){
|
|
|
learun.layer.warning('无地图数据,请检测网络或联系管理员!', function () { }, '提示', '关闭');
|
|
|
return;
|
|
|
}
|
|
|
- // console.log(mapData);
|
|
|
var vehiclePt = new AMap.LngLat(+mapData.vehicleLocation.longitude, +mapData.vehicleLocation.latitude)
|
|
|
if(first){
|
|
|
t.map.setZoomAndCenter(15,vehiclePt);
|
|
@@ -173,7 +174,7 @@
|
|
|
// t.infoWin.setPosition(vehiclePt)
|
|
|
// t.infoWin.setMap(t.map);
|
|
|
|
|
|
- console.log(mapData);
|
|
|
+ // console.log(mapData);
|
|
|
|
|
|
var fence = JSON.parse(mapData.fenceShapeInfo);
|
|
|
if(fence.type == 'circle'){
|