Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/my-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ export class MyMap extends LitElement {
@property({ type: String })
areaUnit: AreaUnitEnum = "m2";

@property({ type: String })
ariaLabel = "Interactive map";

@property({ type: Boolean })
showScale = false;

Expand Down Expand Up @@ -418,7 +415,7 @@ export class MyMap extends LitElement {
render() {
return html`<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<link rel="stylesheet" href="https://cdn.skypack.dev/ol@^6.6.1/ol.css" />
<div id="map" tabindex="0" aria-label=${this.ariaLabel} />`;
<div id="map" tabindex="0" />`;
}

/**
Expand Down