krpano =
krpano.
get(
'global');
var hs =
krpano.
addhotspot(
'auto');
hs.
url =
'http://localhost:3900/public/markers/venue2.png';
hs.
ath =
mouse_at_h;
hs.
atv =
mouse_at_v;
hs.
name =
makeid(
5);
hs.
accuracy =
1;
hs.
alpha =
'1.0';
hs.
scale =
0.5;
hs.
zoom =
true;
hs.
rotate =
0;
hs.
dragging =
true;
// a custom setting for enabling/disabling the dragging
hs.
enabled =
true;
hs.
visible =
true;
hs.
renderer =
'css3d';
console.
log(
'hs',
hs);
Currently I am adding hotspot like above code and it is working perfectly fine but now I want to add hotspot name on hotspot image and for multiple hotspot which is created by user so there will be a one hotspot and its name on it this way it will be multiple with different names.
I have done some R&D for this and found out that there is a layer we can add in xml but i don't know how to do that using JavaScript while adding hotspot.
Can you please guide me.