()
| 45 | } |
| 46 | } |
| 47 | get zoom() { |
| 48 | /* jshint ignore:start */ |
| 49 | return this.#hasConnected ? +this.#initialZoom : +this.getAttribute('zoom'); |
| 50 | /* jshint ignore:end */ |
| 51 | } |
| 52 | set zoom(val) { |
| 53 | /* jshint ignore:start */ |
| 54 | if (this.#hasConnected) return; // Ignore after connection |
nothing calls this directly
no test coverage detected