Skip to content

Commit ae171a3

Browse files
committed
Merge branch 'release/1.10.2'
2 parents 78b0262 + 17e44be commit ae171a3

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-datainmap",
3-
"version": "1.10.1",
3+
"version": "1.10.2",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

plugins/gh-datainmap/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
**1.10.2 (2021-12-07)**
2+
3+
- Documentatie wijziging, nieuwe URL voor standaard kaart.
4+
- De zoom in/uit-knoppen hebben nu een `aria-label` waar de zichtbare tekst in voor komt.
5+
16
**1.10.1 (2021-10-06)**
27

38
- Fix voor kaartweergave in de backend. Deze was namelijk niet zichtbaar.

plugins/gh-datainmap/CONFIGURATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Een mooie kaart om te gebruiken is een afkomstig van PDOK. Vul bij de laag de vo
3434

3535
```
3636
Type: WMTS (+GetCapabilities)
37-
URL: https://geodata.nationaalgeoregister.nl/tiles/service/wmts?request=GetCapabilities&service=WMTS
38-
Laag naam: brtachtergrondkaart
37+
URL: https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0?request=getcapabilities&service=wmts
38+
Laag naam: standaard
3939
Laag transparantie: 1.00
4040
Matrixset: EPSG:3857
4141
```

plugins/gh-datainmap/gh-datainmap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Data In Map
44
Plugin URI: https://bitbucket.org/gemeenteheerenveen/datainmap-plugin/src/master/
55
Description: Data In Map is a plugin for displaying maps.
6-
Version: 1.10.1
6+
Version: 1.10.2
77
Requires at least: 5.0
88
Requires PHP: 7.2
99
Author: Gemeente Heerenveen
@@ -26,7 +26,7 @@
2626
*/
2727

2828
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
29-
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.1');
29+
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.2');
3030
if ( ! defined('GH_DIM_FILE')) define('GH_DIM_FILE', __FILE__);
3131
if ( ! defined('GH_DIM_DIR')) define('GH_DIM_DIR', dirname(__FILE__));
3232
if ( ! defined('GH_DIM_DEBUG')) define('GH_DIM_DEBUG', false);

src/components/map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class MapComponent extends Component {
4747
this.olMap.getControls().forEach((control) => {
4848
if(control.element.className.indexOf('ol-zoom') != -1) {
4949
control.element.children.forEach((el) => {
50-
el.setAttribute('aria-label', el.getAttribute('title'));
50+
el.setAttribute('aria-label', el.getAttribute('title') + ' ' + el.textContent);
5151
});
5252
}
5353
});

0 commit comments

Comments
 (0)