Search found 108 matches

by christoph
Wed Oct 25, 2023 9:03 am
Forum: Pano2VR general
Topic: Custom URL(Node ID) Question
Replies: 7
Views: 5206

Re: Custom URL(Node ID) Question

Pano2VR is using the location.hash ('#') for accessing a specific panorama and view in a tour. (what we call 'Direct Node Access')
Using the querystring ('?') does not work...

Cheers,
Christoph
by christoph
Tue Dec 20, 2022 1:43 pm
Forum: Pano2VR general
Topic: html ID for hotspots
Replies: 4
Views: 6563

Re: html ID for hotspots

Our skin elements in general have no (html) id. Also hotspots are dynamically cloned for each node, and there could be many for each hotspot template, so what would that id be? Anyway, the player function that gives you an array of all current point hotspots will give you all hotspots anyway, so you...
by christoph
Tue Dec 20, 2022 8:03 am
Forum: Pano2VR general
Topic: html ID for hotspots
Replies: 4
Views: 6563

Re: html ID for hotspots

Hi! Our player has a function 'getCurrentPointHotspots()', that gives you an array of all the hotspots present in the current node. Each element in that array has a property 'ggId', that contains the ID of the hotspot template in the skin editor. (So you can then filter for all hotspots that have a ...
by christoph
Mon Jan 10, 2022 1:57 pm
Forum: Pano2VR general
Topic: CSS command wrong in skin.js
Replies: 5
Views: 1612

Re: CSS command wrong in skin.js

Hi André! The field next to width in the skin editor (when CSS is selected) should only be used to set the value for the width property. If you want to set additional CSS properties, use the 'CSS Styles' field in the Advanced properties section. So, in your case, put calc(100vw*0.2) in the width fie...
by christoph
Thu Sep 30, 2021 1:38 pm
Forum: Unterstützung für Pano2VR
Topic: Ausgabe in UHD
Replies: 1
Views: 4847

Re: Ausgabe in UHD

Hallo Ado! Um sicher zu gehen, dass ich deine Frage richtig verstehe: von welcher Art von Ausgabe reden wir hier, Animationsausgabe oder HTML5 Ausgabe? Weil du sprichst davon in der Ausgabe eine Auflösung von 3840 x 2160 eingestellt zu haben, und so eine Einstellung macht eigentlich nur in der Anima...
by christoph
Tue Feb 23, 2021 3:21 pm
Forum: Pano2VR general
Topic: How to change reference to the pano container
Replies: 2
Views: 1607

Re: How to change reference to the pano container

Hi!
No, the container div can be anywhere, but i guess the problem in your example is, that both divs do not have a size.
Try adding
style="width:100%;height:100%;"
to both divs....

Regards,
Christoph
by christoph
Thu Nov 05, 2020 12:43 pm
Forum: Pano2VR/Object2VR Skins
Topic: polygonal hotspot and javascript
Replies: 2
Views: 1822

Re: polygonal hotspot and javascript

Hi!
The polygon color is not used anywhere in css, but inside the player, where the polygons are drawn.
So sorry, right now there is no way of manipulating colors of polygon hotspots dynamically....

Regards,
Christoph
by christoph
Thu Aug 13, 2020 11:05 am
Forum: Pano2VR general
Topic: Using Droplet for multi point tour
Replies: 4
Views: 2050

Re: Using Droplet for multi point tour

Hi!
You are right, there is a bug in the Windows version of Pano2VR, sorry for that.
It will be fixed in the next release....

Regards,
Christoph
by christoph
Mon Jun 29, 2020 2:59 pm
Forum: Pano2VR general
Topic: Pass in node ID to javascript call
Replies: 3
Views: 1673

Re: Pass in node ID to javascript call

Placeholders cannot be used in Javascript code. But you can get the information in other ways. In your case (if you want to access hotspot information from within a hotspot template) you would use: javascript: dataLayer.push({'event': 'tourNodeSelected','tourName':me.hotspot.url}); Or if you wanted ...
by christoph
Thu Jun 25, 2020 10:52 am
Forum: Pano2VR general
Topic: JavaScript API playSound() issue
Replies: 14
Views: 11851

Re: JavaScript API playSound() issue

@Franco:
in Version 7, the playSound() function will return a Promise....

Regards,
Christoph
by christoph
Wed Jun 24, 2020 6:23 pm
Forum: Components
Topic: Google Analytics Component
Replies: 53
Views: 68881

Re: Google Analytics Component

The player function 'getNodeUserdata(id)' gives you a Javascript object containing the user data for the given node. ('_master' would be the id of the master node) These are the properties of that object: title description author datetime copyright source information comment latitude longitude altit...
by christoph
Fri Mar 06, 2020 8:58 am
Forum: Pano2VR general
Topic: L.tileLayer: Using a WMS feed. Leaflet?
Replies: 1
Views: 2179

Re: L.tileLayer: Using a WMS feed. Leaflet?

Hi Andy! I don't know about WMS (and WMS in Leaflet), but if you want to build the project and skin in Pano2VR, and then edit the skin.js file, i guess you could: - in the Tour Map, add a map, leave the Map Provider at 'OpenStreetMap' and the Map Style at 'Streets'. Remember the Map Id... - in the S...
by christoph
Mon Feb 24, 2020 11:02 am
Forum: Pano2VR general
Topic: JavaScript API playSound() issue
Replies: 14
Views: 11851

Re: JavaScript API playSound() issue

Hi Franco! We do not handle the promise returned from the play() function in the player playSound() function, we do this somewhere else (when we try to auto-play sounds when opening a new node). But what you could do: Our player provides a function 'getMediaObject(id)', which returns the media objec...
by christoph
Fri Feb 21, 2020 8:49 am
Forum: Pano2VR general
Topic: JavaScript API playSound() issue
Replies: 14
Views: 11851

Re: JavaScript API playSound() issue

Hi Franco!
The player function playSound() basically just calls the play() function of the HTML AUDIO element (https://www.w3schools.com/jsref/met_audio_play.asp)

Regards,
Christoph
by christoph
Mon Feb 17, 2020 10:44 am
Forum: CMS Plugins
Topic: Joomla Plugin shows {
Replies: 7
Views: 6595

Re: Joomla Plugin shows {

Hi Bernd!
You found a bug there.
The German character 'ß' is causing the problem, as you correctly found out.
We will release a new version of the Joomla plugin with a fix for that.
In the meantime, please use 'ss' instead of 'ß' in your articles, thanks....

Regards,
Christoph