index.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  8. <title><%= htmlWebpackPlugin.options.title %></title>
  9. <script type="text/javascript" src="./static/config/config.js"></script>
  10. <script src="./static/plugins/js/jquery/jquery.min.js"></script>
  11. <script src="./static/plugins/js/turf/turf.min.js"></script>
  12. <link
  13. rel="stylesheet"
  14. href="./static/plugins/js/leaflet1.3.1/leaflet.css"
  15. />
  16. <script src="./static/plugins/js/leaflet1.3.1/leaflet.js"></script>
  17. <script src="./static/plugins/js/leaflet1.3.1/leaflet-side-by-side.js"></script>
  18. <script src="./static/plugins/js/esri-leaflet-v3.0.4/esri-leaflet.js"></script>
  19. <script src="./static/plugins/js/leaflet1.3.1/leaflet.measure.js"></script>
  20. <link
  21. rel="stylesheet"
  22. type="text/css"
  23. href="./static/plugins/js/leaflet1.3.1/leaflet.measure.css"
  24. />
  25. <script src="./static/plugins/js/leaflet1.3.1/leaflet.label.js"></script>
  26. <script src="./static/plugins/js/leaflet/proj4.js"></script>
  27. <script src="./static/plugins/js/leaflet/proj4-compressed.js"></script>
  28. <script src="./static/plugins/js/leaflet/proj4leaflet.js"></script>
  29. <script src="./static/plugins/draw-plugin/lodash.js"></script>
  30. <script src="./static/plugins/draw-plugin/leaflet.draw.js"></script>
  31. <script src="./static/plugins/draw-plugin/leafletDraw2.js"></script>
  32. <script src="./static/plugins/js/leaflet/shpjs.js"></script>
  33. <link
  34. rel="stylesheet"
  35. type="text/css"
  36. href="./static/plugins/js/leaflet1.3.1/leaflet.label.css"
  37. />
  38. <link
  39. rel="stylesheet"
  40. type="text/css"
  41. href="./static//plugins/draw-plugin/leaflet.draw.css"
  42. />
  43. <style type="text/css" media="screen">
  44. .leaflet-control-attribution {
  45. display: none;
  46. }
  47. html,
  48. body {
  49. border: 0px;
  50. margin: 0px;
  51. padding: 0px;
  52. width: 100%;
  53. height: 100%;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <noscript>
  59. <strong
  60. >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
  61. properly without JavaScript enabled. Please enable it to
  62. continue.</strong
  63. >
  64. </noscript>
  65. <div id="app"></div>
  66. </body>
  67. </html>