GithubHelp home page GithubHelp logo

openpanodroid's Introduction

OpenPanodroid is a panorama image viewer for Google's Android platform.

OpenPanodroid was originally developed by Frank Dürr 
(email: [email protected], homepage: http://www.frank-durr.de/)

The latest version of OpenPanodroid is available from GitHub:

https://github.com/duerrfk/OpenPanodroid

OpenPanodroid is released under the GNU General Public License (GNU GPLv3), 
to enable the community to extend OpenPanodroid and use it as basis for
further applications needing a high quality panorama image viewer.

= Flickr Image Import =

In order to access panorama images from Flickr, an API key is required. 
This key is not included with the open source version of OpenPandroid!
You can apply for a key here:

  http://www.flickr.com/services/apps/create/apply

This key has to be imported into the class 

  org.openpanodroid.flickrapi.FlickrConstants, 

attribute 

  API_KEY_PANODROID.

= Calling OpenPanodroid from other Apps =

OpenPanodroid can be used by other applications to display panorama images. 
To call the panorama viewer activity, you have to supply an URI pointing at 
the panorama image (remote file URL (http://), local file path (file://), 
content URI (content://)). The following code example shows how to invoke 
OpenPanodroid:

Uri panoUri = Uri.parse("http://www.frank-durr.de/foo/pano-6000.jpg");
   
ComponentName panoViewerComponent = 
    new ComponentName("org.openpanodroid", 
    "org.openpanodroid.PanoViewerActivity");
    	
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setComponent(panoViewerComponent);
intent.setData(panoUri);
    	
startActivity(intent);

openpanodroid's People

Contributors

duerrfk avatar

Watchers

James Cloos avatar Mehul Joisar 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.