()
| 122 | } |
| 123 | |
| 124 | getMapInfo() { |
| 125 | let center = this.map.getCenter(); |
| 126 | let zoom = this.map.getZoom(); |
| 127 | let maxZoom = this.map.getMaxZoom(); |
| 128 | let pitch = this.map.getPitch(); |
| 129 | let bearing = this.map.getBearing(); |
| 130 | let longitude = center.lng; |
| 131 | let latitude = center.lat; |
| 132 | return { center, zoom, maxZoom, pitch, bearing, longitude, latitude }; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * @function DeckglLayer.prototype.render |
nothing calls this directly
no test coverage detected