view ViewerPlugin/viewer.html @ 397:6b8e1569ae3f

uniformization of the import of JavaScript libraries
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Nov 2025 18:03:57 +0100
parents 60100f5effee
children 1df8095649df
line wrap: on
line source

<!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Orthanc for Whole-Slide Imaging</title>

    <link rel="stylesheet" href="../libs/css/ol.css" type="text/css">

    <style>
      html,
      body {
        margin: 0;
        height: 100%;
      }

      #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
      }
    </style>

  </head>
  <body>
    <div id="map"></div>

    <!-- This is the version of jQuery that is used by Orthanc Explorer -->
    <script src="../../app/libs/jquery.min.js"></script>

    <script src="../libs/js/ol.js"></script>
    <script src="viewer.js"></script>
  </body>
</html>