diff --git a/CHANGELOG.md b/CHANGELOG.md
index c43a9f7..5d5d88a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+### Changed
+
+- Improve edit control icons to make them clearer and more intuitive #179 (ref: #146 #152)
+
## [v2.0.5] - 2022-08-29
### Changed
diff --git a/src/control/Edit/Edit.js b/src/control/Edit/Edit.js
index a1b5086..e1b7c28 100644
--- a/src/control/Edit/Edit.js
+++ b/src/control/Edit/Edit.js
@@ -65,35 +65,35 @@ class Edit extends Control {
const buttons = [
{
name: 'polygon',
- label: '',
+ label: '',
tooltip: 'Draw a Polygon',
draw: 'Polygon',
element: drawButtonsDiv,
},
{
name: 'line',
- label: '',
+ label: '',
tooltip: 'Draw a Line',
draw: 'LineString',
element: drawButtonsDiv,
},
{
name: 'point',
- label: '\u2022',
+ label: '',
tooltip: 'Draw a Point',
draw: 'Point',
element: drawButtonsDiv,
},
{
name: 'circle',
- label: '',
+ label: '',
tooltip: 'Draw a Circle',
draw: 'Circle',
element: drawButtonsDiv,
},
{
name: 'modify',
- label: '',
+ label: '',
tooltip: 'Modify features',
element: actionButtonsDiv,
},