Giter VIP home page Giter VIP logo

react-native-google-vr-panorama's Introduction

react-native-google-vr-panorama

React Native component for the Google VR Panorama Widget

Note: Required Android 4.4 or higher and at least Android SDK Version 23

Features

  1. Supports mono and stereo images
  2. Image loading from the internet

Installation

  1. NPM install
npm install --save react-native-google-vr-panorama
  1. Add the following to your settings.gradle file located in the android folder:
include ':react-native-google-vr-panorama'
project(':react-native-google-vr-panorama').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-vr-panorama/android')
  1. Copy the required .aar from android/libs in this project to the android/app/libs folder in your project (create if not present):
common.aar
commonwidget.aar
panowidget.aar
  1. Add the libs dir as a flat directory repository in build.gradle under app folder:
repositories {
    flatDir {
        dirs 'libs'
    }
}
  1. Update your project dependencies in build.gradle under app folder to include the required dependencies:
... 

dependencies {
    compile(name: 'common', ext: 'aar')
    compile(name: 'commonwidget', ext: 'aar')
    compile(name: 'panowidget', ext: 'aar')

    compile project(':react-native-google-vr-panorama')
}
  1. Add the package to the getPackages method in the MainApplication.java file:
import com.xebia.googlevrpanorama.RNGoogleVRPanoramaPackage;

@Override
protected List<ReactPackage> getPackages() {
    return Arrays.<ReactPackage>asList(
        new MainReactPackage(),
        new RNGoogleVRPanoramaPackage()
    );
}

Usage

Import the package and view:

import GoogleVRPanorama, { PanoramaView } from 'react-native-google-vr-panorama'

Render the view:

render() {
    const imageUrl = 'http://www.google.com/image.jpg'
    const inputType = GoogleVRPanorama.inputType.stereo
    
    return (
        <PanoramaView imageUrl={imageUrl} inputType={inputType} />
    )
}

Example

An example has been provided in example/index.android.js

Image dimensions

Due to the constrained system resources that mobile devices have, loading large images as a Bitmap can cause out of memory errors.

To prevent OOM errors, supply dimensions to the component. When you specify dimensions the component will automatically calculate the sample size and reduce the Bitmap size to the exact dimensions.

If not specified, the original image size will be loaded.

Props

Prop Type Required Description Default
imageUrl string Required The URL of the image that the component should display N/A
dimensions object Optional The dimensions of the image { width: 0, height: 0 }
inputType number Optional The input type for the image. One of GoogleVRPanorama.inputType.mono, GoogleVRPanorama.inputType.stereo GoogleVRPanorama.inputType.mono

Callback methods

| Prop | Properties | Description | |---|---|---|---|---| | onImageLoaded | undefined | Fired when the image has successfully loaded | | onImageLoadingFailed | undefined | Fired when the image failed to load |

react-native-google-vr-panorama's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.