Skip to content

Commit f461cf5

Browse files
committed
Website updates
1 parent 39f08e4 commit f461cf5

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

dist/en/main/examples/custom-interactions.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ <h5 class="source-heading">main.js</h5>
302302
});
303303

304304
/**
305-
* @type {import(&quot;../src/ol/coordinate.js&quot;).Coordinate}
305+
* @type {import(&#x27;ol/coordinate.js&#x27;).Coordinate}
306306
* @private
307307
*/
308308
this.coordinate_ &#x3D; null;
@@ -328,7 +328,7 @@ <h5 class="source-heading">main.js</h5>
328328
}
329329

330330
/**
331-
* @param {import(&quot;../src/ol/MapBrowserEvent.js&quot;).default} evt Map browser event.
331+
* @param {import(&#x27;ol/MapBrowserEvent.js&#x27;).default} evt Map browser event.
332332
* @return {boolean} &#x60;true&#x60; to start the drag sequence.
333333
*/
334334
function handleDownEvent(evt) {
@@ -347,7 +347,7 @@ <h5 class="source-heading">main.js</h5>
347347
}
348348

349349
/**
350-
* @param {import(&quot;../src/ol/MapBrowserEvent.js&quot;).default} evt Map browser event.
350+
* @param {import(&#x27;ol/MapBrowserEvent.js&#x27;).default} evt Map browser event.
351351
*/
352352
function handleDragEvent(evt) {
353353
const deltaX &#x3D; evt.coordinate[0] - this.coordinate_[0];
@@ -361,7 +361,7 @@ <h5 class="source-heading">main.js</h5>
361361
}
362362

363363
/**
364-
* @param {import(&quot;../src/ol/MapBrowserEvent.js&quot;).default} evt Event.
364+
* @param {import(&#x27;ol/MapBrowserEvent.js&#x27;).default} evt Event.
365365
*/
366366
function handleMoveEvent(evt) {
367367
if (this.cursor_) {

dist/en/main/examples/custom-interactions.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/examples/igc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ <h5 class="source-heading">main.js</h5>
343343
const m &#x3D; time.start + time.duration * value;
344344
vectorSource.forEachFeature(function (feature) {
345345
const geometry &#x3D;
346-
/** @type {import(&quot;../src/ol/geom/LineString.js&quot;).default} */ (
346+
/** @type {import(&#x27;ol/geom/LineString.js&#x27;).default} */ (
347347
feature.getGeometry()
348348
);
349349
const coordinate &#x3D; geometry.getCoordinateAtM(m, true);

0 commit comments

Comments
 (0)