How to use the react-native-image-marker.markImage function in react-native-image-marker

To help you get started, we鈥檝e selected a few react-native-image-marker examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github JimmyDaddy / react-native-image-marker / example / markerExample / App.js View on Github external
_markByPosition = (type) => {
    this._showLoading()
    if (this.state.markImage) {
      Marker.markImage({
        src: this.state.image,
        markerSrc: this.state.markImage,
        position: type,
        scale: 1,
        markerScale: 1,
        quality: 100,
        saveFormat: this.state.saveFormat
      }).then((path) => {
        this.setState({
          uri: this.state.saveFormat === ImageFormat.base64 ? path : Platform.OS === 'android' ? 'file://' + path : path,
          show: true,
          loading: false
        })
      }).catch((err) => {
        console.log('====================================')
        console.log(err, 'err')