(width)
| 1073 | } |
| 1074 | |
| 1075 | _changeWidth(width) { |
| 1076 | if (this._container) { |
| 1077 | this._container.style.width = width + 'px'; |
| 1078 | document.querySelector('[is="web-map"]').style.width = width + 'px'; |
| 1079 | } |
| 1080 | if (this._map) { |
| 1081 | this._map.invalidateSize(false); |
| 1082 | } |
| 1083 | } |
| 1084 | _changeHeight(height) { |
| 1085 | if (this._container) { |
| 1086 | this._container.style.height = height + 'px'; |
no outgoing calls
no test coverage detected