(PropTypes)
| 82892 | return isDragging ? "grabbing" : "grab"; |
| 82893 | }; |
| 82894 | function getPropTypes(PropTypes) { |
| 82895 | return { |
| 82896 | id: PropTypes.string, |
| 82897 | width: PropTypes.oneOfType([ |
| 82898 | PropTypes.number, |
| 82899 | PropTypes.string |
| 82900 | ]), |
| 82901 | height: PropTypes.oneOfType([ |
| 82902 | PropTypes.number, |
| 82903 | PropTypes.string |
| 82904 | ]), |
| 82905 | layers: PropTypes.oneOfType([ |
| 82906 | PropTypes.object, |
| 82907 | PropTypes.array |
| 82908 | ]), |
| 82909 | layerFilter: PropTypes.func, |
| 82910 | views: PropTypes.oneOfType([ |
| 82911 | PropTypes.object, |
| 82912 | PropTypes.array |
| 82913 | ]), |
| 82914 | viewState: PropTypes.object, |
| 82915 | effects: PropTypes.arrayOf(PropTypes.instanceOf((0, _effectDefault.default))), |
| 82916 | controller: PropTypes.oneOfType([ |
| 82917 | PropTypes.func, |
| 82918 | PropTypes.bool, |
| 82919 | PropTypes.object |
| 82920 | ]), |
| 82921 | gl: PropTypes.object, |
| 82922 | glOptions: PropTypes.object, |
| 82923 | parameters: PropTypes.object, |
| 82924 | pickingRadius: PropTypes.number, |
| 82925 | useDevicePixels: PropTypes.oneOfType([ |
| 82926 | PropTypes.bool, |
| 82927 | PropTypes.number |
| 82928 | ]), |
| 82929 | touchAction: PropTypes.string, |
| 82930 | onWebGLInitialized: PropTypes.func, |
| 82931 | onResize: PropTypes.func, |
| 82932 | onViewStateChange: PropTypes.func, |
| 82933 | onBeforeRender: PropTypes.func, |
| 82934 | onAfterRender: PropTypes.func, |
| 82935 | onLoad: PropTypes.func, |
| 82936 | onError: PropTypes.func, |
| 82937 | debug: PropTypes.bool, |
| 82938 | drawPickingColors: PropTypes.bool, |
| 82939 | _framebuffer: PropTypes.object, |
| 82940 | _animate: PropTypes.bool, |
| 82941 | _pickable: PropTypes.bool, |
| 82942 | _typedArrayManagerProps: PropTypes.object |
| 82943 | }; |
| 82944 | } |
| 82945 | var defaultProps = { |
| 82946 | id: "deckgl-overlay", |
| 82947 | width: "100%", |
no outgoing calls
no test coverage detected