You are not logged in.

Search results

Search results 1-20 of 20.

Monday, May 23rd 2016, 3:40pm

Author: lonelyelk

arrows plugin

Hello, Mudin! And thank you for your interest in my plugin. It does have more up to date information on its github page. Sergey

Monday, January 18th 2016, 2:32pm

Author: lonelyelk

arrows plugin

Now I have favorited this thread and hope that I will receive email notifications about new messages.

Monday, January 18th 2016, 2:16pm

Author: lonelyelk

arrows plugin

Hello, eliecer! I'm sorry I keep forgeting to come back here. I'm glad that you used github to resolve this issue. Thank you for your interest!

Monday, December 28th 2015, 3:47pm

Author: lonelyelk

Resolved

This was due to event onviewchange being called several times before onloadcomplete. Don't know if this is intended behaviour but checking if onloadcomplete happened before addressing elements in onviewchange handler solved the issue.

Monday, November 30th 2015, 12:41pm

Author: lonelyelk

arrows plugin

Ok! Thank you! I will try to implement it soon.

Monday, November 23rd 2015, 12:01pm

Author: lonelyelk

arrows plugin

Quoted from "relationcg" so that is to say, the arrow's right place is in the middle of the screen, there is no Attributes for it's position. Yes, at the moment I have no clear idea on how to apply horizontal placement from the mathematical point of view. Everything I tried looked not good.

Friday, November 20th 2015, 5:41pm

Author: lonelyelk

arrows plugin

Hello, relationcg 1. This plugin is tested only against the latest stable release. Which at the tшme was and still is 1.18.5. Not sure what is the problem with 1.16, since all features I use were already implemented. 2. You can move arrows up or down but you cannot move them left or right. Arrows are supposed to be "in place" and if you move them sideways they will be either asymmetrically distorted or "out of place" (like on a separate screen). So I decided do only one thing without excessive o...

Wednesday, November 11th 2015, 6:18pm

Author: lonelyelk

arrows plugin

I guess in the future I should check arrow style visible attribute before I draw a shadow.

Wednesday, November 11th 2015, 6:16pm

Author: lonelyelk

what left is a shadow

At the moment shadow is not optional. But it is also a polygonal hotspot. To manage arrow visibility entirely you would have to manage visibility of its shadow. Either make style['default-shadow'] invisible or specify your own shadow style with connection.shadowstyle and make your style invisible.

Wednesday, November 4th 2015, 6:01pm

Author: lonelyelk

arrows plugin

This is discussion thread for arrows plugin. This plugin is open source and also available on github. You can use github's issue tracker to report any issues. This is streetview-inspired plugin that projects on the fly any flat shape (originally arrows). This shape points in one direction from a virtual point in front of the viewer. The shape is created as a polygonal hotspot with all its styling abilities.

Monday, November 2nd 2015, 10:15pm

Author: lonelyelk

Error: Invalid value for <polygon> attribute points="NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN"

I'm getting this error sometimes on refresh when using html5 krpano viewer version 1.18. Managed to figure out that at this moment while view object exists its vlookat and hlookat properties are NaN. No errors in krpano console. This is chrome browser dev console output. Source code 1 2 3 4 5 6 7 8 9 10 11 Error: Invalid value for <polygon> attribute points="NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN NaN,NaN" VM308:1 $g @ VM308:1 Yb @ VM308:1 me @ VM308:1 wg @ VM308:1 ef @ VM308:1 (anonymou...

Tuesday, October 27th 2015, 6:58pm

Author: lonelyelk

non-licensed player for plugin demo

Hello! How do you create non-licensed krpano-branded swf and js + embed code version to show your plugin with? The one that doesn't tell it's registered to you in the console on error that is. Also the version in user plugin template is older than what I would like. Thanks! Sergey

Saturday, October 17th 2015, 1:44pm

Author: lonelyelk

Dynamic style assignment on a hotspot created in an action?

Thank you again! I figured it out. I had an action that was adding hotspots if they were missing. And somehow I was getting different results on if(hotspot[name] === null, ...) depending on if action was called from another action or from javascript. So zorder was not applied correctly.

Friday, October 16th 2015, 5:52pm

Author: lonelyelk

Dynamic style assignment on a hotspot created in an action?

Thank you very much! I there any place where these methods and functions are documented?Also I find that this approach messes up hotspots zorder. In flash version setting style zorder attribute seems to help, but in html5 version the order seems to be different if you add hotspots without style, load hotspots from action tag of from javascript using krpano.call method. And no way to reorder hotspots afterwards. Adding hotspots without style always sets visible zorder in the order of adding: last...

Friday, October 16th 2015, 3:39pm

Author: lonelyelk

Dynamic style assignment on a hotspot created in an action?

addhotspot(test); set(hotspot[test].style, stylename); seems to have no effect on said hotspot style. Style seems to work only when assigned statically in xml. Is there a way to apply a style by name on a newly created hotspot via action?

Tuesday, September 22nd 2015, 4:58pm

Author: lonelyelk

Wrong path for html-template when using custom config file

Hello! Using commandline tool: Source code 1 /Applications/krpano-1.19-pr3/krpanotools makepano mymultires.config pano.jpg Inside for html setting I have Source code 1 htmltemplate=html/embedpano.html I get following error: Source code 1 ERROR: unable to load html template: mymultires.confightml/embedpano.html So I have to create folder "mymultires.confightml" instead of html. Both for krpano 1.18 and 1.19-pre3. Must be some error in path construction?

Monday, September 21st 2015, 6:04pm

Author: lonelyelk

Is it possible to specify voffset for sphere2cube?

Krpanotools sphere2cube seems always to place sphere image in the middle vertically? Documentation doesn't specify any possibility to transform sphere projection when it's full circle but not full height. I would like to specify voffset for transform tool? Is there any posibility to do so except attaching black stripe where I want it to have 2x1 image before using sphere2cube tool? undocumented feature perhaps?

Monday, September 21st 2015, 5:58pm

Author: lonelyelk

Equirectangular multilevel panorama is not showing in WebGL

I'm trying to show equirectangular panorama in html5. If entire image is used: Source code 1 <image type="SPHERE" hfov="360.00" vfov="120.489130" voffset="-29.755435" multires="true" tilesize="256" baseindex="0"> <sphere url="pano.jpg" /> </image> Everything seems ok. But when using levels only black screen is shown. Source code 1 2 <image type="SPHERE" hfov="360.00" vfov="120.489130" voffset="-29.755435" multires="true" tilesize="256" baseindex="0"> <level tiledimagewidth="17664" tiledimageheig...