userSettingv.html 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <div id="globalSetting" class="panel">
  2. <div class="panel-body">
  3. <div id="mapForm" class="part">
  4. <div class="header">
  5. <h4>基础图设置</h4></div>
  6. <div class="map-form">
  7. <dl>
  8. <dt>中心点:[lat,lng]</dt>
  9. <dd>
  10. <input type="text" style="width:66px" id="mapLat" name="mapLat" class="input map-lat" value="39.90743" />
  11. <input type="text" style="width:66px" id="mapLng" name="mapLng" class="input map-lng" value="116.39134" />
  12. </dd>
  13. </dl>
  14. <dl>
  15. <dt>缩放等级:</dt>
  16. <dd>
  17. <select id="mapZoom">
  18. <option value="2">2</option>
  19. <option value="3">3</option>
  20. <option value="4">4</option>
  21. <option value="5">5</option>
  22. <option value="6">6</option>
  23. <option value="7">7</option>
  24. <option value="8">8</option>
  25. <option value="9">9</option>
  26. <option value="10">10</option>
  27. <option value="11">11</option>
  28. <option value="12">12</option>
  29. <option value="13">13</option>
  30. <option value="14">14</option>
  31. <option value="15">15</option>
  32. <option value="16">16</option>
  33. <option value="17">17</option>
  34. <option value="18">18</option>
  35. <option value="19">19</option>
  36. </select>
  37. </dd>
  38. </dl>
  39. <dl>
  40. <dt>默认图层类型:</dt>
  41. <dd>
  42. <select id="mapType">
  43. <option value="1">交通图</option>
  44. <option value="2">影像图</option>
  45. <option value="3">地势图</option>
  46. </select>
  47. </dd>
  48. </dl>
  49. </div>
  50. </div>
  51. <div id="dxForm" class="part">
  52. <div class="header"><h4>专题图层设置</h4>
  53. <a class="alink add-new">添加新的专题一张图</a>
  54. </div>
  55. <div class="body">
  56. <div id="dxList"></div>
  57. </div>
  58. </div>
  59. <div id="mxForm" class="part">
  60. <div class="header"><h4>三维数据设置</h4>
  61. <a class="alink add-new">添加新的三维数据</a>
  62. </div>
  63. <div class="body">
  64. <div id="mxList"></div>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="panel-footer">
  69. <button class="btn-default sure">保存设置</button>
  70. </div>
  71. <script id="dixing-item-template" type="text/x-handlebars-template">
  72. {{#each this}}
  73. <div class="item-form">
  74. <a class="btn delete btn2 btn-small" >删除</a>
  75. <a class="btn up btn2 btn-small">上调</a>
  76. <a class="btn down btn2 btn-small">下调</a>
  77. <!-- <a class="btn tile-view btn2 btn-small">预览</a> -->
  78. <dl>
  79. <dt>名称:</dt>
  80. <dd>
  81. <input value="{{name}}" name="name" style="width:150px" type="text" class="input name" />
  82. </dd>
  83. </dl>
  84. <dl>
  85. <dt>Guid:</dt>
  86. <dd>
  87. <input value="{{guid}}" name="guid" style="width:150px" type="text" class="input guid" />
  88. </dd>
  89. </dl>
  90. <dl>
  91. <dt>初始缩放等级:</dt>
  92. <dd>
  93. <input value="{{zoom}}" name="zoom" type="text" style="width:150px" class="input zoom" />
  94. </dd>
  95. </dl>
  96. <dl>
  97. <dt>最小缩放等级:</dt>
  98. <dd>
  99. <input value="{{min_zoom}}" name="min_zoom" type="text" style="width:150px" class="input min_zoom" />
  100. </dd>
  101. </dl>
  102. <dl>
  103. <dt>最大缩放等级:</dt>
  104. <dd>
  105. <input value="{{max_zoom}}" name="max_zoom" type="text" style="width:150px" class="input max_zoom" />
  106. </dd>
  107. </dl>
  108. <dl>
  109. <dt>中心点:[lat,lng]</dt>
  110. <dd>
  111. <input value="{{center.[0]}}" name="center-lat" style="width:60px" type="text" class="input center-lat" />
  112. <input value="{{center.[1]}}" name="center-lng" style="width:64px" type="text" class="input center-lng" />
  113. </dd>
  114. </dl>
  115. <dl>
  116. <dt>瓦片源:</dt>
  117. <dd>
  118. <input value="{{tileLayerUrl}}" name="tileLayerUrl" style="width:150px" type="text" class="input tileLayerUrl" />
  119. </dd>
  120. </dl>
  121. </div>
  122. {{/each}}
  123. </script>
  124. <script id="dixing-item-form-template" type="text/x-handlebars-template">
  125. <div class="item-form">
  126. <a class="btn delete btn2 btn-small" >删除</a>
  127. <a class="btn up btn2 btn-small">上调</a>
  128. <a class="btn down btn2 btn-small">下调</a>
  129. <!-- <a class="btn tile-view btn2 btn-small">预览</a> -->
  130. <dl>
  131. <dt>名称:</dt>
  132. <dd>
  133. <input name="name" style="width:150px" type="text" class="input name" />
  134. </dd>
  135. </dl>
  136. <dl>
  137. <dt>Guid:</dt>
  138. <dd>
  139. <input name="guid" style="width:150px" type="text" class="input guid" />
  140. </dd>
  141. </dl>
  142. <dl>
  143. <dt>初始缩放等级:</dt>
  144. <dd>
  145. <input name="zoom" type="text" style="width:150px" class="input zoom" />
  146. </dd>
  147. </dl>
  148. <dl>
  149. <dt>最小缩放等级:</dt>
  150. <dd>
  151. <input name="min_zoom" type="text" style="width:150px" class="input min_zoom" />
  152. </dd>
  153. </dl>
  154. <dl>
  155. <dt>最大缩放等级:</dt>
  156. <dd>
  157. <input name="max_zoom" type="text" style="width:150px" class="input max_zoom" />
  158. </dd>
  159. </dl>
  160. <dl>
  161. <dt>中心点:[lat,lng]</dt>
  162. <dd>
  163. <input name="center-lat" style="width:60px" type="text" class="input center-lat" />
  164. <input name="center-lng" style="width:64px" type="text" class="input center-lng" />
  165. </dd>
  166. </dl>
  167. <dl>
  168. <dt>瓦片源:</dt>
  169. <dd>
  170. <input name="tileLayerUrl" style="width:150px" type="text" class="input tileLayerUrl" />
  171. </dd>
  172. </dl>
  173. </div>
  174. </script>
  175. <script id="moxing-item-template" type="text/x-handlebars-template">
  176. {{#each this}}
  177. <div class="item-form">
  178. <a class="btn delete btn2 btn-small" >删除</a>
  179. <a class="btn up btn2 btn-small">上调</a>
  180. <a class="btn down btn2 btn-small">下调</a>
  181. <dl>
  182. <dt>名称:</dt>
  183. <dd>
  184. <input value="{{name}}" name="name" style="width:150px" type="text" class="input name" />
  185. </dd>
  186. </dl>
  187. <dl>
  188. <dt>视角高度:</dt>
  189. <dd>
  190. <input value="{{height}}" name="height" type="text" style="width:150px" class="input zoom" />
  191. </dd>
  192. </dl>
  193. <dl>
  194. <dt>中心点:[lat,lng]</dt>
  195. <dd>
  196. <input value="{{center.[0]}}" name="center-lat" style="width:60px" type="text" class="input center-lat" />
  197. <input value="{{center.[1]}}" name="center-lng" style="width:64px" type="text" class="input center-lng" />
  198. </dd>
  199. </dl>
  200. <dl>
  201. <dt>模型源:</dt>
  202. <dd>
  203. <input value="{{modelUrl}}" name="modelUrl" style="width:150px" type="text" class="input modelUrl" />
  204. </dd>
  205. </dl>
  206. </div>
  207. {{/each}}
  208. </script>
  209. <script id="moxing-item-form-template" type="text/x-handlebars-template">
  210. <div class="item-form">
  211. <a class="btn delete btn2 btn-small" >删除</a>
  212. <a class="btn up btn2 btn-small">上调</a>
  213. <a class="btn down btn2 btn-small">下调</a>
  214. <dl>
  215. <dt>名称:</dt>
  216. <dd>
  217. <input name="name" style="width:150px" type="text" class="input name" />
  218. </dd>
  219. </dl>
  220. <dl>
  221. <dt>视角高度:</dt>
  222. <dd>
  223. <input name="height" type="text" style="width:150px" class="input zoom" />
  224. </dd>
  225. </dl>
  226. <dl>
  227. <dt>中心点:[lat,lng]</dt>
  228. <dd>
  229. <input name="center-lat" style="width:60px" type="text" class="input center-lat" />
  230. <input name="center-lng" style="width:64px" type="text" class="input center-lng" />
  231. </dd>
  232. </dl>
  233. <dl>
  234. <dt>模型源:</dt>
  235. <dd>
  236. <input name="modelUrl" style="width:150px" type="text" class="input modelUrl" />
  237. </dd>
  238. </dl>
  239. </div>
  240. </script>
  241. </div>