12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <script type="text/javascript" src="./static/config/config.js"></script>
- <script src="./static//plugins/js/jquery/jquery.min.js"></script>
- <script src="./static/plugins/js/turf/turf.min.js"></script>
- <link rel="stylesheet" href="./static/plugins/js/leaflet1.3.1/leaflet.css">
- <script src="./static/plugins/js/leaflet1.3.1/leaflet.js"></script>
- <script src="./static/plugins/js/leaflet1.3.1/leaflet-side-by-side.js"></script>
- <script src="./static/plugins/js/esri-leaflet-v3.0.4/esri-leaflet.js"></script>
- <script src="./static/plugins/js/leaflet1.3.1/leaflet.measure.js"></script>
- <link rel="stylesheet" type="text/css" href="./static/plugins/js/leaflet1.3.1/leaflet.measure.css">
- <script src="./static/plugins/js/leaflet1.3.1/leaflet.label.js"></script>
- <link rel="stylesheet" type="text/css" href="./static/plugins/js/leaflet1.3.1/leaflet.label.css">
- <style type="text/css" media="screen">
- .leaflet-control-attribution{
- display: none;
- }
- html,body{
- border: 0px;
- margin: 0px;
- padding: 0px;
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- </body>
- </html>
|