All Projects → scihant → Ctpanoramaview

scihant / Ctpanoramaview

Licence: mit
A library that displays spherical or cylindrical panoramas with touch or motion based controls.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Ctpanoramaview

Cascadingtabledelegate
A no-nonsense way to write cleaner UITableViewDelegate and UITableViewDataSource in Swift.
Stars: ✭ 931 (-2.1%)
Mutual labels:  cocoapods, carthage
Quiver
Validation, searching and filtering made easy for swift.
Stars: ✭ 27 (-97.16%)
Mutual labels:  cocoapods, carthage
Statusalert
Display Apple system-like self-hiding status alerts. It is well suited for notifying user without interrupting user flow in iOS-like way.
Stars: ✭ 809 (-14.93%)
Mutual labels:  cocoapods, carthage
Blockhook
Hook Objective-C blocks. A powerful AOP tool.
Stars: ✭ 742 (-21.98%)
Mutual labels:  cocoapods, carthage
Imgix Swift
A Swift client library for generating URLs with imgix
Stars: ✭ 19 (-98%)
Mutual labels:  cocoapods, carthage
Nightnight
Elegant way to integrate night mode to swift projects
Stars: ✭ 771 (-18.93%)
Mutual labels:  cocoapods, carthage
Swipemenuviewcontroller
Swipable tab and menu View and ViewController.
Stars: ✭ 926 (-2.63%)
Mutual labels:  cocoapods, carthage
Gradients
🌔 A curated collection of splendid 180+ gradients made in swift
Stars: ✭ 719 (-24.4%)
Mutual labels:  cocoapods, carthage
Preferences
⚙ Add a preferences window to your macOS app in minutes
Stars: ✭ 898 (-5.57%)
Mutual labels:  cocoapods, carthage
Sdwebimageflplugin
A SDWebImage plugin to support GIF using FLAnimatedImage and category
Stars: ✭ 16 (-98.32%)
Mutual labels:  cocoapods, carthage
Mixpanel Iphone
iPhone tracking library for Mixpanel Analytics
Stars: ✭ 939 (-1.26%)
Mutual labels:  cocoapods, carthage
Tbactionsheet
A Custom&Powerful Action Sheet For iOS. 一个 ActionSheet 满足所有样式!超高自由度的可定制!
Stars: ✭ 942 (-0.95%)
Mutual labels:  cocoapods, carthage
Defaults
Swifty and modern UserDefaults
Stars: ✭ 734 (-22.82%)
Mutual labels:  cocoapods, carthage
Xlpagertabstrip
Android PagerTabStrip for iOS.
Stars: ✭ 6,671 (+601.47%)
Mutual labels:  cocoapods, carthage
Zephyr
Effortlessly synchronize UserDefaults over iCloud.
Stars: ✭ 722 (-24.08%)
Mutual labels:  cocoapods, carthage
Bfkit
BFKit is a collection of useful classes and categories to develop Apps faster.
Stars: ✭ 811 (-14.72%)
Mutual labels:  cocoapods, carthage
Shiny
Iridescent Effect View (inspired by Apple Pay Cash) ✨
Stars: ✭ 707 (-25.66%)
Mutual labels:  cocoapods, carthage
Koyomi
Simple customizable calendar component in Swift 📆
Stars: ✭ 716 (-24.71%)
Mutual labels:  cocoapods, carthage
Dockprogress
Show progress in your app's Dock icon
Stars: ✭ 813 (-14.51%)
Mutual labels:  cocoapods, carthage
Tkswitchercollection
An animation switch collection
Stars: ✭ 877 (-7.78%)
Mutual labels:  cocoapods, carthage

CTPanoramaView

CI Status Cocoapods Compatible Carthage compatible Issues

CTPanoramaView is a high-performance library that uses SceneKit to display complete spherical or cylindrical panoramas with touch or motion based controls.

panorama_demo

Requirements

  • iOS 8.0+
  • v1.0 requires Xcode 8.0 and Swift 3.0
  • v1.1 requires XCode 9.0 and Swift 4.0
  • v1.2 requires XCode 10.0 and Swift 4.2
  • v1.3 requires XCode 10.0 and Swift 5.0
  • v1.4 requires XCode 12.0 and Swift 5.0

CTPanoramaView can be used both from Objective-C and Swift code.

Installation

Using Carthage

To install CTPanoramaView using Carthage, add the folowing line into your Cartfile:

github "scihant/CTPanoramaView" ~> 1.3

Then run the carthage update command to build the framework and drag the built CTPanoramaView.framework into your XCode project.

Using CocoaPods

To install CTPanoramaView using CocoaPods, add the following line into your Podfile:

pod "CTPanoramaView", "~> 1.3"

Then run the pod install command and use the created workspace to open your project from now on.

Manual Install

Just add the file CTPanoramaView.swift (and CTPieSliceView.swift if you want to use it as the compass view) to your project.

Running the Example project

The example project is located in the Example directory. The framework target is already added as a dependency to it therefore you can run it directly.

Usage

Create an instance of CTPanoramaView either in code or using a Storyboard/Nib.

Then load a panoramic image and set it as the image of the CTPanoramaView instance:

// Create an instance of CTPanoramaView called "panoramaView" somewhere
// ...
let image = UIImage(named: "panoramicImage.png")
panaromaView.image = image

panorama_screenshot

Configuration

Panorama Types

CTPanoramaView supports two types of panoramic images:

  • Spherical panoramas (also called 360 photos)
  • Cylindrical panoramas

All panoramas should be full. Partial panoramas (panoramas with a field of view of less than 360º) are not supported. For a spherical panorama, the image should use equirectangular projection. Cubic format is not supported.

CTPanoramaView will automatically determine whether the given image is a spherical or cylindircal panorama by looking at the aspect ratio of the image. If it is 2:1, then it will assume a spherical panorama. If you want to override this default value, change the value of the panoramaType property after the image is set.

panaromaView.panoramaType = .spherical  // or .cylindrical

Control Methods

CTPanoramaView allows the user to navigate the panorama two different ways. To change the control method, use the controlMethod property.

panaromaView.controlMethod = .touch  // Touch based control
panaromaView.controlMethod = .motion // Accelerometer & gyroscope based control

The default control method is touch based control. You can change the control method on the fly, while the panorama is being displayed on the screen. The visible section will get automatically reset during a control method change.

When using touch based control, you can set the starting angle of the viewer in radians using the startAngle property of CTPanoramaView. This property is ignored in motion based control mode.

Orientation Support

All orientations are supported. Orientation changes are automatically handled. Therefore you don't have to worry about things getting messed up after an orientation change.

Compass

If you want to display a compass that shows the users current field of view, use the compass property. When you set this property to a custom UIView subclass conforming to the CTPanoramaCompass protocol, the view will automatically supplied with rotation and field of view angles whenever one of them changes.

// compassView is a custom view that conforms to the `CTPanoramaCompass` protocol.
panaromaView.compass =  compassView 

The protocol contains only a single method, which is updateUI(rotationAngle:fieldOfViewAngle:). Here, rotationAngle is the amount of rotation around the vertical axis, and fieldOfViewAngle is the horizontal FoV angle of the camera. Both values are in radians.

You can see an example implementation of a compass in the supplied CTPieSliceView class. Add it into your view hierarchy somewhere above your CTPanoramaView instance, and then set it as its compass. You'll see that it shows the current FoV accurately. Here's how CTPieSliceView looks in its default configuration:

compassview

CTPieSliceView has several customizable properties such as sliceColor, outerRingColor and bgColor, all of which can also be modified from the interface builder thanks to its live-rendering support.

Overlay Views

There is also a convenience property named overlayView that can be used to add a custom view that covers the entire panorama view on top. When using touch based controls, it's up to you to make sure that the overlay view does not "consume" the touches it receives so that the CTPanoramaView instance can receive the touch events properly.

How to Contribute

Create a feature branch off the dev branch and then send me a pull request. I don't merge PR's directly to master so please don't make your changes there.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].