(center, zoom, bearing)
| 13 | } |
| 14 | |
| 15 | setView(center, zoom, bearing) { |
| 16 | this.transform_.center = LatLng.convert(center); |
| 17 | this.transform_.zoom = +zoom; |
| 18 | this.transform_.bearing = +bearing; |
| 19 | this.hasView_ = true; |
| 20 | } |
| 21 | |
| 22 | setViewSize(width, height) { |
| 23 | this.transform_.width = width; |
no outgoing calls
no test coverage detected