Search results
Search results 1-20 of 21.
Hi, Here you'll see the city tour of Sète, a french historical city, in front of the méditerranéen sea. https://superproduction.fr/visiter-sete/ This project uses JS, html and Firebase real time database Tell me what you think of that ;)
Hi, I want to hire a developper to make me the following : - a simple HTML JS CSS Firebase website where you can drag and drop an image - if the file is a panoramic image, execute the krpanotool maketiles function - store the output folder and images into a firebase project Storage system. The project shouldn’t use php. I can use NodeJS. It should work on local server on MAC OSX and on a Linux server. The price will be discussed in private messages. Please feel free ton contact me for any questi...
Hi all !! I manage to launch via the terminal on my machine, the maketiles command https://krpano.com/docu/tools/#maketiles Syntax: ./krpanotools maketiles inputfile outputfile [tilesize] [OPTIONS] I would like via a javascript, to be able to launch this command line on my local server. Some are using php : exec(./krpanotools maketiles E1_devant_proche.jpg tile_%v_%h.jpg 2048); I would like to use JS. I am running it on local server via wampp on Mac OSX. And i tried running it with nodeJS server...
Is it with this doc : https://krpano.com/docu/tools/ ?
Hi, I saw that https://roundme.com/ is using KRpano. I would like to know if anyone know how they are doing the drag and drop your picture to create a scene ? Ho they manage to dynamically creates all the pano_b.jpg, pano_b.jpg, pano_d.jpg... preview.jpg etc from the upload of a picture ? Was I clear enough ? When I saw that they are using KR pano, thats when I knew the potential of embeding Krpano into HTML JS website. I am myself using Firebase to store all the textual data, and i have a scrip...
Hi all ! I'm learning the JS interface. Today, i would like to run a xml action from a JS file by clicking on a HTML button I have my index.html Source code 1 2 3 <script src="script.js"></script> <div id="title"></div> <div class="button" onclick=" getSceneTitleName(); ">Get Scene Title Name</div> On my script.js Source code 1 2 3 4 5 6 7 8 9 function getSceneTitleName(){ if(krpano){ krpano.set("scene[get(xml.scene)].title","Nouveau titre"); <!-- Here i would like to call the skin_update_scene_...
I solved it, it was only a problem with the call of the function
Hi all, I want to get the title name of the actual scene via the javascript interface. i saw other posts and tried em, but it didn’t worked for me This code : https://krpano.com/forum/wbb/index.php?p…49028#post49028 didn't worked for me. Source code 1 2 3 4 5 6 getSceneTitleName(); var krpano = document.getElementById("krpanoSWFObject"); function getSceneTitleName(){ var title= String( krpano.get("scene[get(xml.scene)].title") ); console.log(title); }; anyone can help me ? Thank you
I have set position of both to absolute and it's working :) #pano {z-index : 1; position: absolute; } .contenu {z-index : 2; position: absolute; }
Hi, I know this question has been answered a lot, but i didn't found a solution for me. in my index.html, i want to display a div aobe the pano div. For example, displaying a top bar with a menu in HTML5 So i have my <div id="pano"> with the embedpano inside. and i want to display a div like follow, above the pano div . Source code 1 2 3 4 <div class="contenu" style="transform:translateZ(1000000000000px)"> <div class="button" onclick="add_hotspot();">Add a Hotspot at the current position</div> <...
I've solved it ! the problem was because of PARENT and CHILD problem ! Source code 1 2 3 4 5 6 for(set(h,0), h LT hotspot.count, inc(h);, def(connection, array); set(connection[get(h)].parent,connections); set(layer[connections].connection[get(h)].name,"name"); set(layer[connections].connection[get(h)].hdir,"hdir"); ); Like that it works properly ! thanks a lot for your help
I've solved it ! the problem was because of PARENT and CHILD problem ! Source code 1 2 3 4 5 6 for(set(h,0), h LT hotspot.count, inc(h);, def(connection, array); set(connection[get(h)].parent,connections); set(layer[connections].connection[get(h)].name,"name"); set(layer[connections].connection[get(h)].hdir,"hdir"); ); Like that it works properly ! thanks a lot for your help
Ok thank you, that helps me :) But i have an issue with set(connection[get(h)].hdir,"hdir"); I want to make a script so that every scene will automatically be like that : Source code 1 2 3 4 5 6 7 8 9 10 11 <scene name="scene_e2_2_couloirs_bureaux_1" title="Couloirs bureaux 1" onstart="" thumburl="panos/e2_2_couloirs_bureaux_1.tiles/thumb.jpg" lat="" lng="" heading=""><view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" /> <previ...
Hi, I would like to add a xml element with an action like follow : <connection name="" hdir="" /> I know that you can add a layer with addlayer(name, varname*), but can you add a custom xml element ? https://krpano.com/docu/actions/#addplugin Thank you !
That's what calc() made to do ! Thanks a lot ! :)
Hi, This might help you ! https://krpano.com/docu/actions/#lookto You can modify the field of view (fov) to zoom in or out. lookto(toH,toV,fov*,motiontype*,shortestway*,nonblocking*,donecall*)
Hi all slice() : Returns a part of the string s from index a to b. substr() : Returns a part of the string s from index i with length l. I'm having fun with krpano but i am having the the sslice function : Here is my simple code and it's trace Source code 1 2 3 4 5 set(scene_name,get(scene[get(xml.scene)].name)); INFO: scene_aerial_e1_e2 trace(scene_name); trace(get(substring(string(get(scene_name)),1,2))); INFO: null I don't know, i've been trying all the possibilities with the values of the sl...
Klaus, Thats exactly it. Thanks for the help :) By the way, i love Krpano, the possibilities are endless Matthias
Hello every body. I have a path problem when i uploaded my project into my website with filezilla on type transfert automatic mode. in my xml, i use %CURRENTXML%/ pathholder as following <preview url="%CURRENTXML%/panos/aerial_e1_e2.tiles/preview.jpg" /> <image prealign="0|0|0"> <cube url="%CURRENTXML%/panos/aerial_e1_e2.tiles/pano_%s.jpg" /> </image> here is my directory : tour.js tour.xml tour.html panos/aerial_E1_E2.tiles/pano_b.jpg /pano_d.jpg Here is my problem for all the pictures in my pa...