()
| 114 | } |
| 115 | }, |
| 116 | async getMapBoundaries() { |
| 117 | if (fabricRef.current) { |
| 118 | return NativeAirMapsModule.getMapBoundaries(node); |
| 119 | } else { |
| 120 | throw new Error( |
| 121 | 'getMapBoundaries is only supported on iOS with Fabric.', |
| 122 | ); |
| 123 | } |
| 124 | }, |
| 125 | animateToRegion(region: Region, duration: number) { |
| 126 | if (fabricRef.current) { |
| 127 | try { |
nothing calls this directly
no test coverage detected
searching dependent graphs…