File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " gh-datainmap" ,
3- "version" : " 1.10.1 " ,
3+ "version" : " 1.10.2 " ,
44 "description" : " " ,
55 "main" : " index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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```
3636Type: 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
3939Laag transparantie: 1.00
4040Matrixset: EPSG:3857
4141```
Original file line number Diff line number Diff line change 33Plugin Name: Data In Map
44Plugin URI: https://bitbucket.org/gemeenteheerenveen/datainmap-plugin/src/master/
55Description: Data In Map is a plugin for displaying maps.
6- Version: 1.10.1
6+ Version: 1.10.2
77Requires at least: 5.0
88Requires PHP: 7.2
99Author: Gemeente Heerenveen
2626*/
2727
2828if ( ! 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 ' );
3030if ( ! defined ('GH_DIM_FILE ' )) define ('GH_DIM_FILE ' , __FILE__ );
3131if ( ! defined ('GH_DIM_DIR ' )) define ('GH_DIM_DIR ' , dirname (__FILE__ ));
3232if ( ! defined ('GH_DIM_DEBUG ' )) define ('GH_DIM_DEBUG ' , false );
Original file line number Diff line number Diff 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 } ) ;
You can’t perform that action at this time.
0 commit comments