CINXE.COM

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <!-- Responsive --> <meta name="viewport" content="width=device-width"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="default"> <!-- End Responsive --> <!-- Use protocol relative urls that way if the browser is viewing the page via HTTPS the js/css file will be requested using the HTTPS protocol --> <link rel="stylesheet" href="https://js.arcgis.com/4.27/esri/css/main.css"> <!-- Load any application specific styles --> <link rel="stylesheet" href="./bundle.css"> <link rel="stylesheet" href="./custom.css"> </head> <body> <div id="viewDiv"></div> <script> // Check for IE if (navigator && navigator.userAgent) { var match = /\b(MSIE |Trident.*?rv:|Edge\/)(\d+)/.exec(navigator.userAgent); if (match && match.length && match.length === 3) { const version = parseInt(match[2]); if (version <= 19) { document.location = "../shared/unsupported/index.html"; } } } </script> <script src="./config/es6-promise.auto.min.js"></script> <script src="./config/dojo.js"></script> <script src="https://js.arcgis.com/4.27/"></script> <script> require([ "dojo/text!config/application.json", "dojo/text!config/boilerplate.json", "dojo/i18n!config/nls/resources", "application.js" ], function ( applicationConfig, boilerplateConfig, i18n, entrypoint ) { entrypoint.default(applicationConfig, boilerplateConfig, i18n); }); </script> </body> </html>