Beiträge von Rubha

    Hi All,

    Basically I'm an iOS developer, finding it hard to integrate KRPano for our iOS application. Have understood the basic by referring to quick tutorial in this link: [url='''' [url''']https://krpano.com/docu/tutorials/quickstart/#top[/url]']. Please help me in understanding these basic points below,

    1.Always needs to be dependent on the KRPano tools to generate .html and other files including tiled images? Can't it be done programatically? Because, will be getting only this information for storing the settings of the KRPano server from the API Response. Attaching the sample for the same
    2.How can I use the KRPano testing server on iOS devices (OR) will we not be able to load the .html file in iOS devices without the KRPano testing server(i.e offline)?

    no, that's not correct - since krpano version 1.19-pr8 from 2016-09-30 there are 'tour_testingserver' files included in each output (for Windows and Mac).
    Just double click them and the tour will open in the current default browser and run there.
    That should be not that 'tech-savvy' - and beside of this you can also anytime rename the tour_testingserver files to make them more accessible.


    Hi Klaus,
    I am using the autogenerated .html created by following the documentation https://krpano.com/docu/tutorials/quickstart/#top
    and added that .html file and other resources including .xml,.js,.swf and .exe of testing server into my iOS app bundle.

    Help me to progress from here.Do I need to start the server using that .exe file locally in my iOS webView to load my .html file?

    Basically I'm an iOS developer, and working on integrating the krpano viewer to iOS application. I have gone through krpano documentation and some articles on krpano forum and stack overflow, but could not find any complete answers

    What I have tried till now,

    1. created .html files by referring to the link https://krpano.com/docu/tutorials/quickstart/#top

    2. Added .html and other auto generated autofiles as well(.js,.swf,.xml) to the iOS application

    3. Loaded the .html file using web view iOS as below,


    func loadHtmlPage (){

    guard let urlResource = Bundle.main.url(forResource: "index", withExtension: "html") else {

    print ("error")

    return

    }

    let webRequest = NSURLRequest.init(url: urlResource)

    webView.load(webRequest as URLRequest)

    }


    4. But getting the error ,attached the screenshot for the same.

    Please guide me on what went wrong, and also let me know, is it possible to generate .xml files dynamically from the response api.