krpano 文字热点动态实时变化

想要在全景中以文字热点的方式实时显示一些数据,不需要刷新。

1、在tour.html中使用js动态生成实时变化的文字内容,这里用了定时器自动增加,在实际应用中可以定时读取相应的数据库中的内容。

2.在tour.xml文件中使用定时器读取js中的文字。这里先在startup的action中调用krpano中的定时器函数。


    
    set(startscene,get(images));
    
    set(hotspot_ons,get(hotspot_on));
    if(startscene === null OR !scene[get(startscene)], copy(startscene,scene[0].name); );   
    loadscene(get(startscene), null, MERGE);
     
     setinterval(test, 1.0,          
    set(hotspot[hs1].html,get(test)); 
   ); 
    

3.设置相应的热点



   
   
      set(hot,get(test));
   

 

你可能感兴趣的:(krpano,js)