Skip to content

Commit

Permalink
Merge branch 'master' into olivier/circle-geom
Browse files Browse the repository at this point in the history
  • Loading branch information
oterral committed May 10, 2024
2 parents c0e9de2 + ca99c50 commit f5e30ae
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.2.1](https://github.com/geops/openlayers-editor/compare/v2.2.0...v2.2.1) (2024-03-05)


### Bug Fixes

* update JSDoc comments to improve TypeScript definitions ([#269](https://github.com/geops/openlayers-editor/issues/269)) ([769c1bc](https://github.com/geops/openlayers-editor/commit/769c1bc48f426310cece9a9b0444edd6c77895b3))

## [2.2.0](https://github.com/geops/openlayers-editor/compare/v2.1.2...v2.2.0) (2023-05-04)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ole",
"license": "BSD-2-Clause",
"description": "OpenLayers Editor",
"version": "2.2.1-beta.4",
"version": "2.2.1",
"main": "build/index.js",
"dependencies": {},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/control/buffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import bufferSVG from '../../img/buffer.svg';

/**
* Control for creating buffers.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.BufferControl
*/
class BufferControl extends Control {
Expand Down
2 changes: 1 addition & 1 deletion src/control/cad.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {

/**
* Control with snapping functionality for geometry alignment.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.CadControl
*/
class CadControl extends Control {
Expand Down
2 changes: 1 addition & 1 deletion src/control/difference.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import diffSVG from '../../img/difference.svg';

/**
* Control for creating a difference of geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.Difference
*/
class Difference extends TopologyControl {
Expand Down
3 changes: 1 addition & 2 deletions src/control/draw.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import drawLineSVG from '../../img/draw_line.svg';

/**
* Control for drawing features.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.DrawControl
*/
class DrawControl extends Control {
Expand Down Expand Up @@ -41,7 +41,6 @@ class DrawControl extends Control {

/**
* @type {ol.interaction.Draw}
* @private
*/
this.drawInteraction = new Draw({
type: options?.type || 'Point',
Expand Down
2 changes: 1 addition & 1 deletion src/control/intersection.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import intersectionSVG from '../../img/intersection.svg';

/**
* Control for intersection geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.Intersection
*/
class Intersection extends TopologyControl {
Expand Down
3 changes: 1 addition & 2 deletions src/control/modify.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Delete from '../interaction/delete';

/**
* Control for modifying geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.ModifyControl
*/
class ModifyControl extends Control {
Expand Down Expand Up @@ -126,7 +126,6 @@ class ModifyControl extends Control {
/**
* Select interaction to modify features.
* @type {ol.interaction.Select}
* @private
*/
this.selectModify = new SelectModify({
filter: this.selectFilter,
Expand Down
2 changes: 1 addition & 1 deletion src/control/rotate.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import rotateMapSVG from '../../img/rotate_map.svg';

/**
* Tool with for rotating geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.RotateControl
*/
class RotateControl extends Control {
Expand Down
2 changes: 1 addition & 1 deletion src/control/topology.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import delSVG from '../../img/buffer.svg';

/**
* Control for deleting geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.TopologyControl
*/
class TopologyControl extends Control {
Expand Down
2 changes: 1 addition & 1 deletion src/control/union.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import unionSVG from '../../img/union.svg';

/**
* Control for creating a union of geometries.
* @extends {ole.Control}
* @extends {Control}
* @alias ole.Union
*/
class Union extends TopologyControl {
Expand Down

0 comments on commit f5e30ae

Please sign in to comment.