Skip to content

Commit 0310ef5

Browse files
committed
Update documentation
1 parent a4bbce0 commit 0310ef5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+970
-251
lines changed

docs/annotation.AnnotationGroup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
11941194
<br class="clear">
11951195

11961196
<footer>
1197-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
1197+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
11981198
</footer>
11991199

12001200
<script> prettyPrint(); </script>

docs/annotation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
131131
<br class="clear">
132132

133133
<footer>
134-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
134+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
135135
</footer>
136136

137137
<script> prettyPrint(); </script>

docs/annotation.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
773773
<br class="clear">
774774

775775
<footer>
776-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
776+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
777777
</footer>
778778

779779
<script> prettyPrint(); </script>

docs/annotations__AnnotationManager.js.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ <h1 class="page-title">Source: annotations/_AnnotationManager.js</h1>
5050
const { Marker, Markup } = Enums
5151

5252
class _AnnotationManager {
53-
constructor ({ map, pyramid, drawingSource } = {}) {
53+
constructor ({ map, pyramid, affine, drawingSource } = {}) {
5454
const markupManager = new _MarkupManager({
5555
map,
5656
pyramid,
57+
affine,
5758
drawingSource,
5859
formatters: {
5960
[Marker.Arrow]: arrowFormat,
@@ -65,6 +66,7 @@ <h1 class="page-title">Source: annotations/_AnnotationManager.js</h1>
6566
this.props = {
6667
map,
6768
pyramid,
69+
affine,
6870
markupManager
6971
}
7072

@@ -228,7 +230,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
228230
<br class="clear">
229231

230232
<footer>
231-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
233+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
232234
</footer>
233235

234236
<script> prettyPrint(); </script>

docs/annotations_markups__MarkupManager.js.html

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,18 @@ <h1 class="page-title">Source: annotations/markups/_MarkupManager.js</h1>
8888
}
8989

9090
class _MarkupManager {
91-
constructor ({ map, pyramid, drawingSource, formatters, onClick, onStyle } = {}) {
91+
constructor ({
92+
map,
93+
pyramid,
94+
affine,
95+
drawingSource,
96+
formatters,
97+
onClick,
98+
onStyle
99+
} = {}) {
92100
this._map = map
93101
this._pyramid = pyramid
102+
this._affine = affine
94103
this._formatters = formatters
95104
this._drawingSource = drawingSource
96105

@@ -279,7 +288,12 @@ <h1 class="page-title">Source: annotations/markups/_MarkupManager.js</h1>
279288
const view = this._map.getView()
280289
const unitSuffix = _getUnitSuffix(view)
281290
const format = this._getFormatter(event.target)
282-
const output = format(event.target, unitSuffix, this._pyramid)
291+
const output = format(
292+
event.target,
293+
unitSuffix,
294+
this._pyramid,
295+
this._affine
296+
)
283297
this.update({
284298
feature,
285299
value: output,
@@ -553,7 +567,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
553567
<br class="clear">
554568

555569
<footer>
556-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
570+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
557571
</footer>
558572

559573
<script> prettyPrint(); </script>

docs/api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
125125
<br class="clear">
126126

127127
<footer>
128-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
128+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
129129
</footer>
130130

131131
<script> prettyPrint(); </script>

docs/color.PaletteColorLookupTable.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
707707
<br class="clear">
708708

709709
<footer>
710-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
710+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
711711
</footer>
712712

713713
<script> prettyPrint(); </script>

docs/color.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
662662
<br class="clear">
663663

664664
<footer>
665-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
665+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
666666
</footer>
667667

668668
<script> prettyPrint(); </script>

docs/color.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
462462
<br class="clear">
463463

464464
<footer>
465-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
465+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
466466
</footer>
467467

468468
<script> prettyPrint(); </script>

docs/dicom-microscopy-viewer.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="annota
238238
<br class="clear">
239239

240240
<footer>
241-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 00:27:07 GMT-0400 (Eastern Daylight Time)
241+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Fri Sep 02 2022 19:20:39 GMT-0400 (Eastern Daylight Time)
242242
</footer>
243243

244244
<script> prettyPrint(); </script>

0 commit comments

Comments
 (0)