This file is indexed.

/usr/share/doc/libjs-jquery-geo-doc/html/examples/image.html is in libjs-jquery-geo-doc 1.0~b1+ds1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>image example</title>
  <meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
  <meta name="description" content="An example of image display">
  <meta name="author" content="Ryan Westphal">
  <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/blitzer/jquery-ui.css" />
  <link rel="stylesheet" type="text/css" href="css/style.css" />
  <style type="text/css">
    #map
    {
      position: fixed;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
    }
  </style>
</head>
<body>
  <div>
    <div id="map">
    </div>
    <div class="info">
      <div class="links">
        <a href="../" class="docLink">&lt; docs</a>
        <a href="http://jsfiddle.net/ryanttb/==JSFIDDLE==/embedded/" class="fiddleLink"><img src="img/jsfiddle.png" alt="" /> jsFiddle &gt;</a>
      </div>
      <h1>image</h1>
      <p></p>
      <button id="cmdZoom" type="button">zoom in</button>
    </div>
  </div>
  <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
  <script src="/usr/share/javascript/jquery-ui/jquery-ui.min.js"></script>
  <script src="/usr/share/javascript/excanvas/excanvas.min.js"></script>
  <script src="/usr/share/javascript/jsrender/jsrender.min.js"></script>
  <script src="/usr/share/javascript/jquery-mousewheel/jquery.mousewheel.min.js"></script>
  <script src="/usr/share/javascript/jquery-ui/ui/jquery.ui.widget.min.js"></script>
  <script src="/usr/share/javascript/jquery-geo/jquery.geo.full.min.js"></script>
  <script>
    $(function () {
      // set $.geo.proj to null because images don't have a projection
      $.geo.proj = null;

      // create a map
      var map = $("#map").geomap({
        center: [ 5616/2, 3744/2 ],
        zoom: 4,
        axisLayout: "image",
        services: [
          {
            type: "tiled",
            src: function (view) {
              return "http://localhost:36426/ObliqueViewer/tiles/RightImage/000230-101708154420-cam5/" + (10 - view.zoom) + "/" + view.tile.column + "/" + view.tile.row;
            },
            attr: "&copy; Sanborn"
          }
        ],
        tilingScheme: {
          tileWidth: 256,
          tileHeight: 256,
          pixelSizes: [
            32,
            22.6274166,
            16,
            11.3137083,
            8,
            5.656854,
            4,
            2.828427,
            2,
            1.414213547,
            1
          ],
          origin: [ 0, 0 ]
        },
      });

      $("#cmdZoom").button().click(function() {
        map.geomap("zoom", +1);
      });
    });  
  </script>

  <script>
    var _gaq = [['_setAccount', 'UA-26084853-1'], ['_trackPageview']];
    (function (d, t) {
      var g = d.createElement(t), s = d.getElementsByTagName(t)[0]; g.async = 1;
      g.src = ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js';
      s.parentNode.insertBefore(g, s);
    } (document, 'script'));
  </script>
</body>
</html>