Lin_Ye_Fang_Huo/public/widgets/queryRoute/view.html

98 lines
3.6 KiB
HTML
Raw Normal View History

2023-07-08 15:37:34 +08:00
<!DOCTYPE html>
<html class="no-js css-menubar" lang="zh-cn">
2023-07-18 09:04:15 +08:00
<head>
2023-07-08 15:37:34 +08:00
<title>弹窗子页面</title>
2023-07-18 09:04:15 +08:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
2023-07-08 15:37:34 +08:00
<!-- 移动设备 viewport -->
2023-07-18 09:04:15 +08:00
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no,minimal-ui" />
<meta name="author" content=" http://mars3d.cn " />
2023-07-08 15:37:34 +08:00
<!-- 360浏览器默认使用Webkit内核 -->
2023-07-18 09:04:15 +08:00
<meta name="renderer" content="webkit" />
2023-07-08 15:37:34 +08:00
<!-- Chrome浏览器添加桌面快捷方式安卓 -->
2023-07-18 09:04:15 +08:00
<link rel="icon" type="image/png" href="../../img/favicon/favicon.png" />
<meta name="mobile-web-app-capable" content="yes" />
2023-07-08 15:37:34 +08:00
<!-- Safari浏览器添加到主屏幕IOS -->
2023-07-18 09:04:15 +08:00
<link rel="icon" sizes="192x192" href="img/favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="MarsGIS" />
2023-07-08 15:37:34 +08:00
<!-- Win8标题栏及ICON图标 -->
2023-07-18 09:04:15 +08:00
<link rel="apple-touch-icon-precomposed" href="../../img/favicon/apple-touch-icon.png" />
<meta name="msapplication-TileImage" content="../../img/favicon/app-icon72x72@2x.png" />
<meta name="msapplication-TileColor" content="#62a8ea" />
2023-07-08 15:37:34 +08:00
<!-- 第3方lib引入 -->
2023-07-18 09:04:15 +08:00
<script
type="text/javascript"
src="../../lib/include-lib.js?time=20210803"
libpath="../../lib/"
include="jquery,font-awesome,bootstrap,admui-frame"
></script>
2023-07-08 15:37:34 +08:00
<link href="../../css/widget-win.css" rel="stylesheet" />
2023-07-18 09:04:15 +08:00
<link href="view.css?time=20210803" rel="stylesheet" />
</head>
2023-07-08 15:37:34 +08:00
2023-07-18 09:04:15 +08:00
<body>
<table id="paramView" class="talbe_style zbxd" style="display: block">
<tr>
<td class="nametd">起点:</td>
<td>
<input
id="inputStartPoint"
value=""
type="text"
class="form-control serachContent mcxd_start_text"
autocomplete="off"
placeholder="可输入关键字回车查询"
/>
<ul class="searchval" id="searchval_start"></ul>
</td>
<td>
<button type="button" id="drawStartPoint" class="btn btn-primary">图上选点</button>
</td>
</tr>
<tr>
<td class="nametd">终点:</td>
<td>
<input
id="inputEndPoint"
value=""
type="text"
class="form-control serachContent mcxd_end_text"
autocomplete="off"
placeholder="可输入关键字回车查询"
/>
<ul class="searchval searchval_end" id="searchval_end"></ul>
</td>
<td>
<button type="button" id="drawEndPoint" class="btn btn-primary">图上选点</button>
</td>
</tr>
</table>
<div class="line"></div>
<div class="route_box" id="routeBox" style="display: none">
<table class="router_table" border="1" bordercolor="#ffffff" cellspacing="0" cellpadding="0">
<thead class="title">
<td width="40">序号</td>
<td>推荐线路</td>
</thead>
<tbody class="routerContent" id="routerContent"></tbody>
</table>
2023-07-08 15:37:34 +08:00
2023-07-18 09:04:15 +08:00
<div style="padding-top: 10px">
<table class="talbe_style" style="margin: auto">
<tr>
<td>
<span>速度:</span>
<input style="width: 60%" id="changeSpeed" value="120" type="number" class="form-control" autocomplete="off" />km/h
</td>
</tr>
2023-07-08 15:37:34 +08:00
</table>
2023-07-18 09:04:15 +08:00
</div>
2023-07-08 15:37:34 +08:00
</div>
2023-07-18 09:04:15 +08:00
<script src="view.js?time=20210803"></script>
</body>
2023-07-08 15:37:34 +08:00
</html>