| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
- <%@ page session="false" %>
- <!doctype html>
- <html lang="ko">
- <head>
- <link rel="stylesheet" type="text/css" href="${contextRoot }/css/common.css"/>
- <link rel="stylesheet" type="text/css" href="${contextRoot }/css/main.css"/>
- <link rel="stylesheet" href="${contextRoot }/css/themes/default/style.css"/>
- <%@ include file="/WEB-INF/jsp/common.jsp" %>
- </head>
- <body class="sang">
- <div class="bottomMenu" id="bottomMenu">
- <div class="bottomBody" id="cvibBottomBody">
- <table id="cvibBottomBodyTable">
- <thead>
- <tr>
- <th style="width:5%">센터명</th>
- <th style="width:15%">제어기번호</th>
- <th style="width:15%">교차로명</th>
- <!-- <th style="width:10%">수집일시</th> -->
- <th style="width:3%">전이</th>
- <th style="width:3%">감응</th>
- <th style="width:3%">소등</th>
- <th style="width:3%">점멸</th>
- <th style="width:3%">수동</th>
- <!-- <th style="width:7%">BUS이상</th>
- <th style="width:7%">DB이상</th> -->
- <th style="width:7%">SCU통신이상</th>
- <th style="width:7%">센터통신이상</th>
- <th style="width:7%">모순이상</th>
- <th style="width:7%">주기카운터</th>
- <th style="width:10%">교차로시각</th>
- </tr>
- </thead>
- <tbody id="cvibBottomInfo"></tbody>
- </table>
- </div>
- </div>
- <script src="${contextRoot }/js/common/hashmap.js" type="text/javascript"></script>
- <script src="${contextRoot }/js/common/common-all.js" type="text/javascript"></script>
- <script src="${contextRoot }/js/common/common.js" type="text/javascript"></script>
- <script type="text/javascript">
- function goPanToInt(intNm, lng, lat) {
- if (parent._Level > 3) parent.map.setLevel(1);
- parent.map.panTo(new parent.kakao.maps.LatLng(lat, lng));
- setTimeout(
- function () {
- parent.getSignalInfo();
- parent.customOverlayFnc(intNm, lng, lat);
- }, 100 * 2
- );
- }
- /* function showOnlineList() {
- $('#onlineToggle').attr('src','/images/online_on.png');
- $('#offlineToggle').attr('src','/images/offline_off.png');
- $('#cvibBottomHead').hide();
- $('#cvibBottomBody').hide();
- $('#bottomHead').show();
- $('#bottomBody').show();
- } */
- function showOfflineList() {
- $('#offlineToggle').attr('src', '/images/offline_on.png');
- $('#onlineToggle').attr('src', '/images/online_off.png');
- $('#bottomHead').hide();
- $('#bottomBody').hide();
- $('#cvibBottomHead').show();
- $('#cvibBottomBody').show();
- }
- </script>
- </body>
- </html>
|