view ViewerPlugin/viewer.html @ 383:30959cb91e89

fix changeset 379
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 07 Apr 2025 18:40:34 +0200
parents 60100f5effee
children
line wrap: on
line source

<!DOCTYPE html>

<html>
  <head>
    <title>Orthanc for Whole-Slide Imaging</title>

    <link rel="stylesheet" href="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="dist/ol.js"></script>
    <script src="viewer.js"></script>
  </body>
</html>