(width)
| 1030 | } |
| 1031 | |
| 1032 | _changeWidth(width) { |
| 1033 | if (this._container) { |
| 1034 | this._container.style.width = width + 'px'; |
| 1035 | this.shadowRoot.styleSheets[0].cssRules[0].style.width = width + 'px'; |
| 1036 | } |
| 1037 | if (this._map) { |
| 1038 | this._map.invalidateSize(false); |
| 1039 | } |
| 1040 | } |
| 1041 | _changeHeight(height) { |
| 1042 | if (this._container) { |
| 1043 | this._container.style.height = height + 'px'; |
no outgoing calls
no test coverage detected