(height)
| 1082 | } |
| 1083 | } |
| 1084 | _changeHeight(height) { |
| 1085 | if (this._container) { |
| 1086 | this._container.style.height = height + 'px'; |
| 1087 | document.querySelector('[is="web-map"]').style.height = height + 'px'; |
| 1088 | } |
| 1089 | if (this._map) { |
| 1090 | this._map.invalidateSize(false); |
| 1091 | } |
| 1092 | } |
| 1093 | zoomTo(lat, lon, zoom) { |
| 1094 | zoom = Number.isInteger(+zoom) ? +zoom : this.zoom; |
| 1095 | let location = new LatLng(+lat, +lon); |
no outgoing calls
no test coverage detected