(props: MapViewProps)
| 799 | private fabricMap = React.createRef<FabricMapHandle>(); |
| 800 | |
| 801 | constructor(props: MapViewProps) { |
| 802 | super(props); |
| 803 | |
| 804 | this.map = React.createRef<MapViewNativeComponentType>(); |
| 805 | this.state = { |
| 806 | isReady: false, |
| 807 | }; |
| 808 | |
| 809 | this._onMapReady = this._onMapReady.bind(this); |
| 810 | } |
| 811 | |
| 812 | setNativeProps(props: Partial<NativeProps>) { |
| 813 | // @ts-ignore |
nothing calls this directly
no outgoing calls
no test coverage detected