`;
$(".safeDot").append(safeStr);
$(".safeDot span").click(function () {
$(this).parents("li").remove();
var markerId = $(this).attr("markerId");
thisWidget.removeCLPointById(markerId);
});
});
}
function startSelectJymnPoint() {
thisWidget.startSelectJyd(function (data) {
var newData = data.data;
var rescueStr = `
${data.name}:
${newData.x},${newData.y}
`;
$(".rescueDot").append(rescueStr);
$(".rescueDot span").click(function () {
$(this).parents("li").remove();
var markerId = $(this).attr("markerId");
thisWidget.removeJYPointById(markerId);
});
});
}
//影响范围
function effactArea(dis) {
dis = parseFloat(dis).toFixed(2);
$(".affect i").html(dis);
}
//时间轴
function timeProgress(step) {
var stepLen = (1 / 6) * 336 * step;
$(".otherProgressBar").css({
width: stepLen + "px",
});
$(".progressDot").css({
left: stepLen - 8 + "px",
});
}
//影响单位
var unitArr = [];
var unitNum = 0; //POI数量
function affectInfo(data) {
// console.log(data)
var unitStr = "";
for (let i = 0; i < data.length; i++) {
let name = data[i].name;
if (name.length > 17) {
name = name.substring(0, 17) + "...";
}
unitStr += `
${i + 1}${name}
`;
}
$(".poiTable").html(unitStr);
if ($(".poiTable li").length > 0) {
$(".loadMore").show();
}
unitNum = data.length;
$(".unitFind span").eq(0).find("i").html(unitNum);
for (var i = 0; i < $(".poiTable li").length; i++) {
$(".poiTable li")
.eq(i)
.click(function () {
var x = $(this).attr("x");
var y = $(this).attr("y");
thisWidget.locateById(x, y);
});
}
}
//加载更多
$(".loadMore").click(function () {
thisWidget.loadMorePOI();
});
//企业
function companyInfo(data) {
if (data.length == 0) {
return;
}
var unitStr = "";
for (let i = 0; i < data.length; i++) {
let name = data[i].data.name;
if (name.length > 17) {
name = name.substring(0, 17) + "...";
}
unitStr += `
${i + 1}${name}
`;
}
$(".companyTable").html(unitStr);
unitNum = data.length;
$(".unitFind span").eq(1).find("i").html(unitNum);
for (var i = 0; i < $(".companyTable li").length; i++) {
$(".companyTable li")
.eq(i)
.click(function () {
var x = $(this).attr("x");
var y = $(this).attr("y");
thisWidget.locateById(x, y);
});
}
}
//poi和company切换
function pcShowAndHide(that) {
var index = $(that).index();
$(that).addClass("unitNow").siblings().removeClass("unitNow");
$(".tableBox").eq(index).show().siblings().hide();
}
function moreTableList(data) {
var moreStr = "";
var tabLen = $(".poiTable li").length;
for (let i = 0; i < data.length; i++) {
let name = data[i].name;
if (name.length > 17) {
name = name.substring(0, 17) + "...";
}
moreStr += `
${tabLen + i + 1}${name}
`;
}
$(".poiTable").append(moreStr);
for (var i = 0; i < $(".poiTable li").length; i++) {
$(".poiTable li")
.eq(i)
.click(function () {
var x = $(this).attr("x");
var y = $(this).attr("y");
thisWidget.locateById(x, y);
});
}
unitNum += data.length;
$(".unitFind span").eq(0).find("i").html(unitNum);
}
//表单验证
var stepNum = 0;
$(".parmBox li")
.eq(0)
.find("input")
.blur(function () {
var val = $(this).val();
var pLen = $(this).parents("li").find("p").length;
if (!Number(val)) {
if (pLen == 1) {
$(this).parents("li").append('
请输入正确的数值!
');
stepNum++;
}
} else {
if (pLen > 1) {
$(this).parents("li").find("p").eq(1).remove();
}
stepNum--;
}
allowedInput();
});
$(".parmBox li")
.eq(1)
.find("input")
.blur(function () {
var val = $(this).val();
var pLen = $(this).parents("li").find("p").length;
if (!Number(val) || val < 0 || val > 360) {
if (pLen == 1) {
$(this).parents("li").append('
请输入0-360的数值!
');
stepNum++;
}
} else {
if (pLen > 1) {
$(this).parents("li").find("p").eq(1).remove();
}
stepNum--;
}
allowedInput();
});
$(".parmBox li")
.eq(2)
.find("input")
.blur(function () {
var val = $(this).val();
var pLen = $(this).parents("li").find("p").length;
if (!Number(val) || val % 1 != 0) {
if (pLen == 1) {
$(this).parents("li").append('
请输入整数的数值!
');
stepNum++;
}
} else {
if (pLen > 1) {
$(this).parents("li").find("p").eq(1).remove();
}
stepNum--;
}
allowedInput();
});
function allowedInput() {
if (stepNum <= 0) {
stepNum = 0;
$(".nextStep").removeAttr("disabled");
$(".nextStep").css({
cursor: "pointer",
});
} else {
$(".nextStep").attr("disabled", "disabled");
$(".nextStep").css({
cursor: "not-allowed",
});
}
}
//撤离路线
function safeLine(dataArr) {
$(".leaveNum i").eq(0).html(dataArr.length); //企业数量
var safeTableStr = "";
for (let i = 0; i < dataArr.length; i++) {
let name = dataArr[i].startPointData.name;
if (name.length > 5) {
name = name.substring(0, 5) + "...";
}
let endName = dataArr[i].endPointData.name;
if (endName.length > 5) {
endName = endName.substring(0, 5) + "...";
}
safeTableStr += `
${i + 1}${name}--->${endName}
`;
}
$(".safeLineTableList").html(safeTableStr);
var lineLi = $(".safeLineTableList li");
var lineLen = lineLi.length;
for (var i = 0; i < lineLen; i++) {
$(".safeLineTableList li")
.eq(i)
.find("input")
.click(function () {
var checkedBoolen = $(this).prop("checked");
var checkNum = 0;
if (checkedBoolen) {
$(this).prop("checked", true);
} else {
$(this).prop("checked", false);
}
for (var i = 0; i < lineLen; i++) {
var othercheck = $(".safeLineTableList li").eq(i).find("input").prop("checked");
if (othercheck) {
checkNum++;
}
}
if (checkNum == lineLen) {
$(".safeLineTable span").eq(0).find("input").prop("checked", true);
} else {
$(".safeLineTable span").eq(0).find("input").prop("checked", false);
}
//选中路线的id
var safeId = $(this).parents("li").find("span").eq(3).attr("_id");
thisWidget.showHidelineByid(safeId, checkedBoolen);
});
//播放
lineLi
.eq(i)
.find("span")
.eq(3)
.click(function () {
var oneFlag = $(this).find("i").is(".currentOpIcon");
var $_id = $(this).attr("_id");
if (!oneFlag) {
$(".leaveSpeed input").attr("disabled", true);
$(".safeLineTableList li").find("i").removeClass("currentOpIcon");
$(this).find("i").addClass("currentOpIcon");
$(this).parents("li").find("input").prop("checked", true);
$(this).parents("li").addClass("nowLi").siblings().removeClass("nowLi");
var speedVal = $(".leaveSpeed input").val();
thisWidget.roamClmnOne($_id, speedVal);
$(".startAndEndLeave").show();
var times = thisWidget.getOneTimeById($_id) / (parseInt(speedVal) / 120);
var startLeaveText = $("#startLeave").html();
if (startLeaveText == "停止撤离") {
$("#startLeave").html("开始撤离");
flag = true;
}
startLeave1(times);
//去除救援模拟操作
clearRescue();
} else {
$(".leaveSpeed input").attr("disabled", false);
$(".safeLineTableList li").find("i").removeClass("currentOpIcon");
$(".leaveProgressBlue").stop().width(0);
$(".leaveHideEl").stop().width(0);
$(".leavePercent").stop().html("0.00%");
thisWidget.stopRoamClmnArr([$_id]);
thisWidget.resetAllLineStyleCL();
}
});
}
//全选、全不选
$(".safeLineTable span")
.eq(0)
.find("input")
.click(function () {
let allChecked = $(this).prop("checked");
if (allChecked) {
for (let i = 0; i < lineLen; i++) {
$(".safeLineTableList li").eq(i).find("span input").prop("checked", true);
}
} else {
for (let i = 0; i < lineLen; i++) {
$(".safeLineTableList li").eq(i).find("span input").prop("checked", false);
}
}
thisWidget.showHideAllLine(allChecked);
// startLeave()
});
}
function cheliDot(cheliDotNum) {
$(".leaveNum i").eq(1).html(cheliDotNum);
}
function clearLeave() {
$(".startAndEndLeave").hide();
$(".leaveSpeed input").attr("disabled", false);
$(".safeLineTableList li").find("i").removeClass("currentOpIcon");
$(".safeLineTableList li").removeClass("nowLi");
$(".leaveProgressBlue").stop().width(0);
$(".leaveHideEl").stop().width(0);
$(".leavePercent").stop().html("0.00%");
$("#startLeave").html("开始撤离");
flag = true;
}
//开始撤离
function startLeaveArr() {
var lineLi = $(".safeLineTableList li");
var lineLen = lineLi.length;
var idArr = [];
for (var i = 0; i < lineLen; i++) {
var checked = $(".safeLineTableList li").eq(i).find("input").prop("checked");
if (checked) {
var id = $(".safeLineTableList li").eq(i).find("span").eq(3).attr("_id");
idArr.push(id);
}
}
return idArr;
}
function startLeave1(time) {
$(".leaveProgressBlue").stop().width(0);
$(".leaveHideEl").stop().width(0);
$(".leavePercent").stop().html("0.00%");
time = time * 1000;
$(".leaveProgressBlue").animate(
{
width: "256px",
},
{
duration: time,
step: function (now, fx) {
now = ((fx.now / 256) * 100).toFixed(2);
$(".leavePercent").html(now + "%");
if (now > 99.99) {
thisWidget.resetAllLineStyleCL();
}
},
},
time
);
$(".leaveHideEl").animate(
{
width: "256px",
},
time,
function () {
$("#leaveSpeedVal").attr("disabled", false);
$(".safeLineTableList li").find("i").removeClass("currentOpIcon");
}
);
}
var flag = true;
function startLeave(that, time) {
$(".leaveProgressBlue").stop().width(0);
$(".leaveHideEl").stop().width(0);
$(".leavePercent").stop().html("0.00%");
time = time * 1000;
if (flag) {
$(that).html("停止撤离");
$(".leaveSpeed input").attr("disabled", true);
$(".leaveProgressBlue").animate(
{
width: "256px",
},
{
duration: time,
step: function (now, fx) {
now = ((fx.now / 256) * 100).toFixed(2);
$(".leavePercent").html(now + "%");
if (now > 99.99) {
thisWidget.resetAllLineStyleCL();
}
},
},
time
);
$(".leaveHideEl").animate(
{
width: "256px",
},
time,
function () {
$(that).html("开始撤离");
$(".leaveSpeed input").attr("disabled", false);
flag = true;
}
);
flag = false;
} else {
$(that).html("开始撤离");
$(".leaveProgressBlue").stop().width(0);
$(".leaveHideEl").stop().width(0);
$(".leavePercent").stop().html("0.00%");
$(".leaveSpeed input").attr("disabled", false);
flag = true;
}
}
function isSkipStep() {
var isHas = $(".stepRing i").eq(3).is(".nowStep");
if (!isHas) {
$(".faultInfo").eq(2).show().siblings().hide();
}
}
//跳过
function skipStep() {
$(".stepRing i").eq(4).addClass("nowStep");
$(".faultText span").eq(2).addClass("active").siblings().removeClass("active");
$(".faultInfo").eq(4).show().siblings().hide();
thisWidget.stopDraw();
}
//救援路线
function rescueLine(dataArr) {
$(".rescueNum i").html(dataArr.length);
var rescueTableStr = "";
for (let i = 0; i < dataArr.length; i++) {
let name = dataArr[i].startPointData.name;
if (name.length > 6) {
name = name.substring(0, 6) + "...";
}
rescueTableStr += `
${i + 1}${name}--->事故点
`;
}
$(".rescueTableList").html(rescueTableStr);
var lineLi = $(".rescueTableList li");
var lineLen = lineLi.length;
for (var i = 0; i < lineLen; i++) {
$(".rescueTableList li")
.eq(i)
.find("input")
.click(function () {
var checkedBoolen = $(this).prop("checked");
var checkNum = 0;
if (checkedBoolen) {
$(this).prop("checked", true);
} else {
$(this).prop("checked", false);
}
for (var i = 0; i < lineLen; i++) {
var othercheck = $(".rescueTableList li").eq(i).find("input").prop("checked");
if (othercheck) {
checkNum++;
}
}
if (checkNum == lineLen) {
$(".rescueLineTable span").eq(0).find("input").prop("checked", true);
} else {
$(".rescueLineTable span").eq(0).find("input").prop("checked", false);
}
//选中路线的id
var rescueId = $(this).parents("li").find("span").eq(3).attr("_id");
thisWidget.showHidelineByid_JY(rescueId, checkedBoolen);
});
//播放
lineLi
.eq(i)
.find("span")
.eq(3)
.click(function () {
var oneOtherFl = $(this).find("i").is(".currentOpIcon");
var $_id = $(this).attr("_id");
if (!oneOtherFl) {
$(this).parents("li").find("input").prop("checked", true);
$(this).parents("li").addClass("nowLi").siblings().removeClass("nowLi");
$(".rescueTableList li").find("i").removeClass("currentOpIcon");
$(this).find("i").addClass("currentOpIcon");
$(".rescueSpeed input").attr("disabled", true);
var speedVal = $(".rescueSpeed input").val();
thisWidget.roamJymnOne($_id, speedVal);
$(".startAndEndRescue").show();
var times = thisWidget.getOtherOneTimeById($_id) / (parseInt(speedVal) / 120);
var startRescueText = $("#startRescue").html();
if (startRescueText == "停止救援") {
$("#startRescue").html("开始救援");
otherfl = true;
}
startRescue1(times);
//去除撤离模拟中的操作
clearLeave();
} else {
$(".rescueSpeed input").attr("disabled", false);
$(".rescueTableList li").find("i").removeClass("currentOpIcon");
$(".rescueProgressBlue").stop().width(0);
$(".rescueHideEl").stop().width(0);
$(".rescuePercent").stop().html("0.00%");
thisWidget.stopJymnArr([$_id]);
thisWidget.resetAllLineStyleJY();
}
});
}
//全选、全不选
$(".rescueLineTable span")
.eq(0)
.find("input")
.click(function () {
let allChecked = $(this).prop("checked");
if (allChecked) {
for (let i = 0; i < lineLen; i++) {
$(".rescueTableList li").eq(i).find("span input").prop("checked", true);
}
} else {
for (let i = 0; i < lineLen; i++) {
$(".rescueTableList li").eq(i).find("span input").prop("checked", false);
}
}
thisWidget.showHideAllLine_JY(allChecked);
});
}
//开始救援
function startRescueArr() {
var lineLi = $(".rescueTableList li");
var lineLen = lineLi.length;
var idArr = [];
for (var i = 0; i < lineLen; i++) {
var checked = $(".rescueTableList li").eq(i).find("input").prop("checked");
if (checked) {
var id = $(".rescueTableList li").eq(i).find("span").eq(3).attr("_id");
idArr.push(id);
}
}
return idArr;
}
function startRescue1(time) {
$(".rescueProgressBlue").stop().width(0);
$(".rescueHideEl").stop().width(0);
$(".rescuePercent").stop().html("0.00%");
time = time * 1000;
$(".rescueProgressBlue").animate(
{
width: "256px",
},
{
duration: time,
step: function (now, fx) {
now = ((fx.now / 256) * 100).toFixed(2);
$(".rescuePercent").html(now + "%");
if (now > 99.99) {
thisWidget.resetAllLineStyleJY();
}
},
},
time
);
$(".rescueHideEl").animate(
{
width: "256px",
},
time,
function () {
$(".rescueSpeed input").attr("disabled", false);
$(".rescueTableList li").find("i").removeClass("currentOpIcon");
}
);
}
var otherfl = true;
function startRescue(that, time) {
$(".rescueProgressBlue").stop().width(0);
$(".rescueHideEl").stop().width(0);
$(".rescuePercent").stop().html("0.00%");
time = time * 1000;
if (otherfl) {
$(that).html("停止救援");
$(".rescueSpeed input").attr("disabled", true);
$(".rescueProgressBlue").animate(
{
width: "256px",
},
{
duration: time,
step: function (now, fx) {
now = ((fx.now / 256) * 100).toFixed(2);
$(".rescuePercent").html(now + "%");
if (now > 99.99) {
thisWidget.resetAllLineStyleJY();
}
},
},
time
);
$(".rescueHideEl").animate(
{
width: "256px",
},
time,
function () {
$(that).html("开始救援");
$(".rescueSpeed input").attr("disabled", false);
otherfl = true;
}
);
otherfl = false;
} else {
$(that).html("开始救援");
$(".rescueProgressBlue").stop().width(0);
$(".rescueHideEl").stop().width(0);
$(".rescuePercent").stop().html("0.00%");
$(".rescueSpeed input").attr("disabled", false);
otherfl = true;
}
}
function clearRescue() {
otherfl = true;
$(".startAndEndRescue").hide();
$("#startRescue").html("开始救援");
$(".rescueSpeed input").attr("disabled", false);
$(".rescueTableList li").find("i").removeClass("currentOpIcon");
$(".rescueTableList li").find("i").removeClass("nowLi");
$(".rescueProgressBlue").stop().width(0);
$(".rescueHideEl").stop().width(0);
$(".rescuePercent").stop().html("0.00%");
}
//速度值
function speedValue(that) {
var val = $(that).val();
return val;
}
//清楚页面所有内容
function clearHtml() {
$(".faultInfo").eq(0).show().siblings().hide();
$(".faultText span").eq(0).addClass("active").siblings().removeClass("active");
$(".stepRing i").eq(0).addClass("nowStep").siblings().removeClass("nowStep");
//事故模拟--选点页面
$(".faultDot").html("");
$("#windSpeed").val(1);
$("#windDirection").val(45);
$("#playSpeed").val(10);
//事故模拟--数据展示页面
$(".affect i").html(0);
$(".otherProgressBar").width(0);
$(".progressDot").css({ left: "0px" });
$(".unitFind span").eq(0).find("i").html(0);
$(".unitFind span").eq(1).find("i").html(0);
$(".tableList").html("");
$(".loadMore").hide();
//撤离模拟模拟--选点页面
$(".safeDot").html("");
//撤离模拟模拟--数据展示页面
$(".rescueNum i").eq(0).html(0);
$(".rescueNum i").eq(1).html(0);
$(".safeLineTableList").html("");
$(".leaveSpeed input").val(10);
$("#startLeave").html("开始撤离");
$(".startAndEndLeave").hide();
flag = true;
//救援模拟模拟--选点页面
$(".rescueDot").html("");
//救援模拟模拟--数据展示页面
$(".rescueNum i").html(0);
$(".rescueLineTableList").html("");
$(".rescueSpeed input").val(10);
$("#startRescue").html("开始救援");
$(".startAndEndRescue").hide();
otherfl = true;
}
//展示当前多少家企业撤离到安全点
function showRes(is) {
if (is) {
$("#showRes").show();
$(".startAndEndLeave").show();
} else {
$("#showRes").hide();
$(".startAndEndLeave").hide();
}
}
function showPro(bol) {
if (bol) {
$(".startAndEndRescue").show();
} else {
$(".startAndEndRescue").hide();
}
}