Commit b78253991b856af5d5e05ffdbcb85824973cc469
1 parent
d05f876d
1.DVR地址变更
Showing
2 changed files
with
194 additions
and
194 deletions
src/main/resources/static/real_control_v2/mapmonitor/fragments/map_infowindow.html
| 1 | -<div> | |
| 2 | - <script id="map-win-gps-detail-temp" type="text/html"> | |
| 3 | - <div class="gps_info_win" style="width: 200px;"> | |
| 4 | - <h4>{{nbbm}}</h4> | |
| 5 | - <h5> | |
| 6 | - {{lineName}} | |
| 7 | - </h5> | |
| 8 | - <h5> | |
| 9 | - {{if stationName!=null}} | |
| 10 | - {{stationName}} 站 | |
| 11 | - {{else}} | |
| 12 | - 未知站点 | |
| 13 | - {{/if}} | |
| 14 | - </h5> | |
| 15 | - <p>设备状态: | |
| 16 | - {{if valid==1}} | |
| 17 | - invalid(-1 | |
| 18 | - {{else if abnormalStatus=='outBounds'}} | |
| 19 | - 越界 | |
| 20 | - {{else if abnormalStatus=='overspeed'}} | |
| 21 | - 超速 | |
| 22 | - {{else if abnormalStatus=='gps-offline'}} | |
| 23 | - GPS掉线 | |
| 24 | - {{else if abnormalStatus=='offline'}} | |
| 25 | - 离线 | |
| 26 | - {{else}} | |
| 27 | - . | |
| 28 | - {{/if}} | |
| 29 | - </p> | |
| 30 | - <p>设备号:{{deviceId}}</p> | |
| 31 | - <p>速度:{{speed>99?'..':speed}}</p> | |
| 32 | - <p>角度:{{direction}}</p> | |
| 33 | - <p>经度:{{lon}}</p> | |
| 34 | - <p>纬度:{{lat}}</p> | |
| 35 | - | |
| 36 | - <p class="date-str">{{dateStr}}</p> | |
| 37 | - <hr> | |
| 38 | - {{if expectStopTime!=null}} | |
| 39 | - <a href="javascript:;" style="color: #07D;margin-right: 7px;">预计 {{expectStopTime}} 分钟到达终点</a> | |
| 40 | - {{/if}} | |
| 41 | - <a href="javascript:;" style="float: left;" onclick="javascript:window.open('http://180.166.5.82:9005/transport_server/dvr_monitor1.jsp?userid=4&deviceid={{deviceId}}');">DVR</a> | |
| 42 | - <a href="javascript:;" style="float: right;" onclick="javascript:gb_map_play_back.initParams('{{deviceId}}', '{{nbbm}}');">轨迹回放</a> | |
| 43 | - </div> | |
| 44 | - </script> | |
| 45 | - | |
| 46 | - <script id="map-win-station-detail-temp" type="text/html"> | |
| 47 | - <div class="gps_info_win"> | |
| 48 | - <h4>{{stationName}}</h4> | |
| 49 | - <p>站点编码: {{stationCode}}</p> | |
| 50 | - <p>站点类型: | |
| 51 | - {{if stationMark=='B'}} | |
| 52 | - 起点站 | |
| 53 | - {{else if stationMark=='E'}} | |
| 54 | - 终点站 | |
| 55 | - {{else if stationMark=='Z'}} | |
| 56 | - 中途站 | |
| 57 | - {{/if}} | |
| 58 | - </p> | |
| 59 | - <p> | |
| 60 | - 经度: {{lon}} | |
| 61 | - </p> | |
| 62 | - <p>纬度: {{lat}}</p> | |
| 63 | - {{if distances > 0}} | |
| 64 | - <p>到站距离: {{distances}} 公里</p> | |
| 65 | - {{/if}} | |
| 66 | - <p> | |
| 67 | - 电子围栏类型: | |
| 68 | - {{if shapesType=='r'}} | |
| 69 | - 圆形 | |
| 70 | - {{else if shapesType=='d'}} | |
| 71 | - 多边形 | |
| 72 | - {{/if}} | |
| 73 | - </p> | |
| 74 | - <p> | |
| 75 | - {{if shapesType=='r'}} | |
| 76 | - 半径:{{radius}} | |
| 77 | - {{else if shapesType=='d'}} | |
| 78 | - 面积:{{_polygonArea}} 平方米 | |
| 79 | - {{/if}} | |
| 80 | - </p> | |
| 81 | - </div> | |
| 82 | - </script> | |
| 83 | - | |
| 84 | - <script id="map-win-carpark-detail-temp" type="text/html"> | |
| 85 | - <div class="gps_info_win"> | |
| 86 | - <h4>{{parkName}}</h4> | |
| 87 | - <p>停车场编码: {{parkCode}}</p> | |
| 88 | - <p>面积:{{area}}</p> | |
| 89 | - <p> | |
| 90 | - {{if shapesType=='r'}} | |
| 91 | - 电子围栏半径:{{radius}} | |
| 92 | - {{else if shapesType=='d'}} | |
| 93 | - 电子围栏面积:{{_polygonArea}} 平方米 | |
| 94 | - {{/if}} | |
| 95 | - </p> | |
| 96 | - </div> | |
| 97 | - </script> | |
| 1 | +<div> | |
| 2 | + <script id="map-win-gps-detail-temp" type="text/html"> | |
| 3 | + <div class="gps_info_win" style="width: 200px;"> | |
| 4 | + <h4>{{nbbm}}</h4> | |
| 5 | + <h5> | |
| 6 | + {{lineName}} | |
| 7 | + </h5> | |
| 8 | + <h5> | |
| 9 | + {{if stationName!=null}} | |
| 10 | + {{stationName}} 站 | |
| 11 | + {{else}} | |
| 12 | + 未知站点 | |
| 13 | + {{/if}} | |
| 14 | + </h5> | |
| 15 | + <p>设备状态: | |
| 16 | + {{if valid==1}} | |
| 17 | + invalid(-1 | |
| 18 | + {{else if abnormalStatus=='outBounds'}} | |
| 19 | + 越界 | |
| 20 | + {{else if abnormalStatus=='overspeed'}} | |
| 21 | + 超速 | |
| 22 | + {{else if abnormalStatus=='gps-offline'}} | |
| 23 | + GPS掉线 | |
| 24 | + {{else if abnormalStatus=='offline'}} | |
| 25 | + 离线 | |
| 26 | + {{else}} | |
| 27 | + . | |
| 28 | + {{/if}} | |
| 29 | + </p> | |
| 30 | + <p>设备号:{{deviceId}}</p> | |
| 31 | + <p>速度:{{speed>99?'..':speed}}</p> | |
| 32 | + <p>角度:{{direction}}</p> | |
| 33 | + <p>经度:{{lon}}</p> | |
| 34 | + <p>纬度:{{lat}}</p> | |
| 35 | + | |
| 36 | + <p class="date-str">{{dateStr}}</p> | |
| 37 | + <hr> | |
| 38 | + {{if expectStopTime!=null}} | |
| 39 | + <a href="javascript:;" style="color: #07D;margin-right: 7px;">预计 {{expectStopTime}} 分钟到达终点</a> | |
| 40 | + {{/if}} | |
| 41 | + <a href="javascript:;" style="float: left;" onclick="javascript:window.open('http://101.95.136.206:9022/transport_server/dvr_monitor2.html?userid=4&zbh={{nbbm}}&device={{deviceId}}-nvr6');">DVR</a> | |
| 42 | + <a href="javascript:;" style="float: right;" onclick="javascript:gb_map_play_back.initParams('{{deviceId}}', '{{nbbm}}');">轨迹回放</a> | |
| 43 | + </div> | |
| 44 | + </script> | |
| 45 | + | |
| 46 | + <script id="map-win-station-detail-temp" type="text/html"> | |
| 47 | + <div class="gps_info_win"> | |
| 48 | + <h4>{{stationName}}</h4> | |
| 49 | + <p>站点编码: {{stationCode}}</p> | |
| 50 | + <p>站点类型: | |
| 51 | + {{if stationMark=='B'}} | |
| 52 | + 起点站 | |
| 53 | + {{else if stationMark=='E'}} | |
| 54 | + 终点站 | |
| 55 | + {{else if stationMark=='Z'}} | |
| 56 | + 中途站 | |
| 57 | + {{/if}} | |
| 58 | + </p> | |
| 59 | + <p> | |
| 60 | + 经度: {{lon}} | |
| 61 | + </p> | |
| 62 | + <p>纬度: {{lat}}</p> | |
| 63 | + {{if distances > 0}} | |
| 64 | + <p>到站距离: {{distances}} 公里</p> | |
| 65 | + {{/if}} | |
| 66 | + <p> | |
| 67 | + 电子围栏类型: | |
| 68 | + {{if shapesType=='r'}} | |
| 69 | + 圆形 | |
| 70 | + {{else if shapesType=='d'}} | |
| 71 | + 多边形 | |
| 72 | + {{/if}} | |
| 73 | + </p> | |
| 74 | + <p> | |
| 75 | + {{if shapesType=='r'}} | |
| 76 | + 半径:{{radius}} | |
| 77 | + {{else if shapesType=='d'}} | |
| 78 | + 面积:{{_polygonArea}} 平方米 | |
| 79 | + {{/if}} | |
| 80 | + </p> | |
| 81 | + </div> | |
| 82 | + </script> | |
| 83 | + | |
| 84 | + <script id="map-win-carpark-detail-temp" type="text/html"> | |
| 85 | + <div class="gps_info_win"> | |
| 86 | + <h4>{{parkName}}</h4> | |
| 87 | + <p>停车场编码: {{parkCode}}</p> | |
| 88 | + <p>面积:{{area}}</p> | |
| 89 | + <p> | |
| 90 | + {{if shapesType=='r'}} | |
| 91 | + 电子围栏半径:{{radius}} | |
| 92 | + {{else if shapesType=='d'}} | |
| 93 | + 电子围栏面积:{{_polygonArea}} 平方米 | |
| 94 | + {{/if}} | |
| 95 | + </p> | |
| 96 | + </div> | |
| 97 | + </script> | |
| 98 | 98 | </div> |
| 99 | 99 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2_mobile/mapmonitor/fragments/map_infowindow.html
| 1 | -<div> | |
| 2 | - <script id="map-win-gps-detail-temp" type="text/html"> | |
| 3 | - <div class="gps_info_win" style="width: 200px;"> | |
| 4 | - <h4>{{nbbm}}</h4> | |
| 5 | - <h5> | |
| 6 | - {{lineName}} | |
| 7 | - </h5> | |
| 8 | - <h5> | |
| 9 | - {{if stationName!=null}} | |
| 10 | - {{stationName}} 站 | |
| 11 | - {{else}} | |
| 12 | - 未知站点 | |
| 13 | - {{/if}} | |
| 14 | - </h5> | |
| 15 | - <p>设备状态: | |
| 16 | - {{if valid==1}} | |
| 17 | - invalid(-1 | |
| 18 | - {{else if abnormalStatus=='outBounds'}} | |
| 19 | - 越界 | |
| 20 | - {{else if abnormalStatus=='overspeed'}} | |
| 21 | - 超速 | |
| 22 | - {{else if abnormalStatus=='gps-offline'}} | |
| 23 | - GPS掉线 | |
| 24 | - {{else if abnormalStatus=='offline'}} | |
| 25 | - 离线 | |
| 26 | - {{else}} | |
| 27 | - . | |
| 28 | - {{/if}} | |
| 29 | - </p> | |
| 30 | - <p>设备号:{{deviceId}}</p> | |
| 31 | - <p>速度:{{speed>99?'..':speed}}</p> | |
| 32 | - <p>角度:{{direction}}</p> | |
| 33 | - <p>经度:{{lon}}</p> | |
| 34 | - <p>纬度:{{lat}}</p> | |
| 35 | - | |
| 36 | - <p class="date-str">{{dateStr}}</p> | |
| 37 | - <hr> | |
| 38 | - {{if expectStopTime!=null}} | |
| 39 | - <a href="javascript:;" style="color: #07D;margin-right: 7px;">预计 {{expectStopTime}} 分钟到达终点</a> | |
| 40 | - {{/if}} | |
| 41 | - <a href="javascript:;" style="float: left;" onclick="javascript:window.open('http://180.166.5.82:9005/transport_server/dvr_monitor1.jsp?userid=4&deviceid={{deviceId}}');">DVR</a> | |
| 42 | - <a href="javascript:;" style="float: right;" onclick="javascript:gb_map_play_back.initParams('{{deviceId}}', '{{nbbm}}');">轨迹回放</a> | |
| 43 | - </div> | |
| 44 | - </script> | |
| 45 | - | |
| 46 | - <script id="map-win-station-detail-temp" type="text/html"> | |
| 47 | - <div class="gps_info_win"> | |
| 48 | - <h4>{{stationName}}</h4> | |
| 49 | - <p>站点编码: {{stationCode}}</p> | |
| 50 | - <p>站点类型: | |
| 51 | - {{if stationMark=='B'}} | |
| 52 | - 起点站 | |
| 53 | - {{else if stationMark=='E'}} | |
| 54 | - 终点站 | |
| 55 | - {{else if stationMark=='Z'}} | |
| 56 | - 中途站 | |
| 57 | - {{/if}} | |
| 58 | - </p> | |
| 59 | - <p> | |
| 60 | - 经度: {{lon}} | |
| 61 | - </p> | |
| 62 | - <p>纬度: {{lat}}</p> | |
| 63 | - {{if distances > 0}} | |
| 64 | - <p>到站距离: {{distances}} 公里</p> | |
| 65 | - {{/if}} | |
| 66 | - <p> | |
| 67 | - 电子围栏类型: | |
| 68 | - {{if shapesType=='r'}} | |
| 69 | - 圆形 | |
| 70 | - {{else if shapesType=='d'}} | |
| 71 | - 多边形 | |
| 72 | - {{/if}} | |
| 73 | - </p> | |
| 74 | - <p> | |
| 75 | - {{if shapesType=='r'}} | |
| 76 | - 半径:{{radius}} | |
| 77 | - {{else if shapesType=='d'}} | |
| 78 | - 面积:{{_polygonArea}} 平方米 | |
| 79 | - {{/if}} | |
| 80 | - </p> | |
| 81 | - </div> | |
| 82 | - </script> | |
| 83 | - | |
| 84 | - <script id="map-win-carpark-detail-temp" type="text/html"> | |
| 85 | - <div class="gps_info_win"> | |
| 86 | - <h4>{{parkName}}</h4> | |
| 87 | - <p>停车场编码: {{parkCode}}</p> | |
| 88 | - <p>面积:{{area}}</p> | |
| 89 | - <p> | |
| 90 | - {{if shapesType=='r'}} | |
| 91 | - 电子围栏半径:{{radius}} | |
| 92 | - {{else if shapesType=='d'}} | |
| 93 | - 电子围栏面积:{{_polygonArea}} 平方米 | |
| 94 | - {{/if}} | |
| 95 | - </p> | |
| 96 | - </div> | |
| 97 | - </script> | |
| 1 | +<div> | |
| 2 | + <script id="map-win-gps-detail-temp" type="text/html"> | |
| 3 | + <div class="gps_info_win" style="width: 200px;"> | |
| 4 | + <h4>{{nbbm}}</h4> | |
| 5 | + <h5> | |
| 6 | + {{lineName}} | |
| 7 | + </h5> | |
| 8 | + <h5> | |
| 9 | + {{if stationName!=null}} | |
| 10 | + {{stationName}} 站 | |
| 11 | + {{else}} | |
| 12 | + 未知站点 | |
| 13 | + {{/if}} | |
| 14 | + </h5> | |
| 15 | + <p>设备状态: | |
| 16 | + {{if valid==1}} | |
| 17 | + invalid(-1 | |
| 18 | + {{else if abnormalStatus=='outBounds'}} | |
| 19 | + 越界 | |
| 20 | + {{else if abnormalStatus=='overspeed'}} | |
| 21 | + 超速 | |
| 22 | + {{else if abnormalStatus=='gps-offline'}} | |
| 23 | + GPS掉线 | |
| 24 | + {{else if abnormalStatus=='offline'}} | |
| 25 | + 离线 | |
| 26 | + {{else}} | |
| 27 | + . | |
| 28 | + {{/if}} | |
| 29 | + </p> | |
| 30 | + <p>设备号:{{deviceId}}</p> | |
| 31 | + <p>速度:{{speed>99?'..':speed}}</p> | |
| 32 | + <p>角度:{{direction}}</p> | |
| 33 | + <p>经度:{{lon}}</p> | |
| 34 | + <p>纬度:{{lat}}</p> | |
| 35 | + | |
| 36 | + <p class="date-str">{{dateStr}}</p> | |
| 37 | + <hr> | |
| 38 | + {{if expectStopTime!=null}} | |
| 39 | + <a href="javascript:;" style="color: #07D;margin-right: 7px;">预计 {{expectStopTime}} 分钟到达终点</a> | |
| 40 | + {{/if}} | |
| 41 | + <a href="javascript:;" style="float: left;" onclick="javascript:window.open('http://101.95.136.206:9022/transport_server/dvr_monitor2.html?userid=4&zbh={{nbbm}}&device={{deviceId}}-nvr6');">DVR</a> | |
| 42 | + <a href="javascript:;" style="float: right;" onclick="javascript:gb_map_play_back.initParams('{{deviceId}}', '{{nbbm}}');">轨迹回放</a> | |
| 43 | + </div> | |
| 44 | + </script> | |
| 45 | + | |
| 46 | + <script id="map-win-station-detail-temp" type="text/html"> | |
| 47 | + <div class="gps_info_win"> | |
| 48 | + <h4>{{stationName}}</h4> | |
| 49 | + <p>站点编码: {{stationCode}}</p> | |
| 50 | + <p>站点类型: | |
| 51 | + {{if stationMark=='B'}} | |
| 52 | + 起点站 | |
| 53 | + {{else if stationMark=='E'}} | |
| 54 | + 终点站 | |
| 55 | + {{else if stationMark=='Z'}} | |
| 56 | + 中途站 | |
| 57 | + {{/if}} | |
| 58 | + </p> | |
| 59 | + <p> | |
| 60 | + 经度: {{lon}} | |
| 61 | + </p> | |
| 62 | + <p>纬度: {{lat}}</p> | |
| 63 | + {{if distances > 0}} | |
| 64 | + <p>到站距离: {{distances}} 公里</p> | |
| 65 | + {{/if}} | |
| 66 | + <p> | |
| 67 | + 电子围栏类型: | |
| 68 | + {{if shapesType=='r'}} | |
| 69 | + 圆形 | |
| 70 | + {{else if shapesType=='d'}} | |
| 71 | + 多边形 | |
| 72 | + {{/if}} | |
| 73 | + </p> | |
| 74 | + <p> | |
| 75 | + {{if shapesType=='r'}} | |
| 76 | + 半径:{{radius}} | |
| 77 | + {{else if shapesType=='d'}} | |
| 78 | + 面积:{{_polygonArea}} 平方米 | |
| 79 | + {{/if}} | |
| 80 | + </p> | |
| 81 | + </div> | |
| 82 | + </script> | |
| 83 | + | |
| 84 | + <script id="map-win-carpark-detail-temp" type="text/html"> | |
| 85 | + <div class="gps_info_win"> | |
| 86 | + <h4>{{parkName}}</h4> | |
| 87 | + <p>停车场编码: {{parkCode}}</p> | |
| 88 | + <p>面积:{{area}}</p> | |
| 89 | + <p> | |
| 90 | + {{if shapesType=='r'}} | |
| 91 | + 电子围栏半径:{{radius}} | |
| 92 | + {{else if shapesType=='d'}} | |
| 93 | + 电子围栏面积:{{_polygonArea}} 平方米 | |
| 94 | + {{/if}} | |
| 95 | + </p> | |
| 96 | + </div> | |
| 97 | + </script> | |
| 98 | 98 | </div> |
| 99 | 99 | \ No newline at end of file | ... | ... |