tour_test.xml 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. <krpano version="1.19" title="Virtual Tour">
  2. <include url="%SWFPATH%/skin/vtourskin.xml" />
  3. <!-- customize skin settings: maps, gyro, webvr, thumbnails, tooltips, layout, design, ... -->
  4. <skin_settings maps="false"
  5. maps_type="google"
  6. maps_bing_api_key=""
  7. maps_google_api_key=""
  8. maps_zoombuttons="false"
  9. gyro="true"
  10. webvr="true"
  11. webvr_gyro_keeplookingdirection="false"
  12. webvr_prev_next_hotspots="true"
  13. littleplanetintro="false"
  14. title="true"
  15. thumbs="true"
  16. thumbs_width="120" thumbs_height="80" thumbs_padding="10" thumbs_crop="0|40|240|160"
  17. thumbs_opened="false"
  18. thumbs_text="false"
  19. thumbs_dragging="true"
  20. thumbs_onhoverscrolling="false"
  21. thumbs_scrollbuttons="false"
  22. thumbs_scrollindicator="false"
  23. thumbs_loop="false"
  24. tooltips_buttons="false"
  25. tooltips_thumbs="false"
  26. tooltips_hotspots="false"
  27. tooltips_mapspots="false"
  28. deeplinking="false"
  29. loadscene_flags="MERGE"
  30. loadscene_blend="OPENBLEND(0.5, 0.0, 0.75, 0.05, linear)"
  31. loadscene_blend_prev="SLIDEBLEND(0.5, 180, 0.75, linear)"
  32. loadscene_blend_next="SLIDEBLEND(0.5, 0, 0.75, linear)"
  33. loadingtext="loading..."
  34. layout_width="100%"
  35. layout_maxwidth="814"
  36. controlbar_width="-24"
  37. controlbar_height="40"
  38. controlbar_offset="20"
  39. controlbar_offset_closed="-40"
  40. controlbar_overlap.no-fractionalscaling="10"
  41. controlbar_overlap.fractionalscaling="0"
  42. design_skin_images="vtourskin.png"
  43. design_bgcolor="0x2D3E50"
  44. design_bgalpha="0.8"
  45. design_bgborder="0"
  46. design_bgroundedge="1"
  47. design_bgshadow="0 4 10 0x000000 0.3"
  48. design_thumbborder_bgborder="3 0xFFFFFF 1.0"
  49. design_thumbborder_padding="2"
  50. design_thumbborder_bgroundedge="0"
  51. design_text_css="color:#FFFFFF; font-family:Arial;"
  52. design_text_shadow="1"
  53. />
  54. <!--
  55. For an alternative skin design either change the <skin_settings> values
  56. from above or optionally include one of the predefined designs from below.
  57. -->
  58. <!-- <include url="skin/vtourskin_design_flat_light.xml" /> -->
  59. <!-- <include url="skin/vtourskin_design_glass.xml" /> -->
  60. <!-- <include url="skin/vtourskin_design_ultra_light.xml" /> -->
  61. <!-- <include url="skin/vtourskin_design_117.xml" /> -->
  62. <!-- <include url="skin/vtourskin_design_117round.xml" /> -->
  63. <!-- <include url="skin/vtourskin_design_black.xml" /> -->
  64. <!-- startup action - load the first scene -->
  65. <action name="startup" autorun="onstart">
  66. if(startscene === null OR !scene[get(startscene)], copy(startscene,scene[0].name); );
  67. set(vl, get(view.vlookat));
  68. set(hl, get(view.hlookat));
  69. set(vars, calc('view.vlookat=' + vl + '&amp;' + 'view.hlookat=' + hl));
  70. trace(get(vars));
  71. loadscene(get(startscene), get(vars), MERGE);
  72. if(startactions !== null, startactions() );
  73. </action>
  74. <scene name="scene_LC720_k7Pxrby4X" title="LC720_k7Pxrby4X" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/thumb.jpg" lat="" lng="" heading="">
  75. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  76. <preview url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/preview.jpg" />
  77. <image type="CUBE" multires="true" tilesize="512">
  78. <level tiledimagewidth="5184" tiledimageheight="5184">
  79. <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  80. </level>
  81. <level tiledimagewidth="2624" tiledimageheight="2624">
  82. <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  83. </level>
  84. <level tiledimagewidth="1280" tiledimageheight="1280">
  85. <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  86. </level>
  87. <level tiledimagewidth="640" tiledimageheight="640">
  88. <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  89. </level>
  90. </image>
  91. </scene>
  92. <scene name="scene_LC720_Omej5TknN" title="LC720_Omej5TknN" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/thumb.jpg" lat="" lng="" heading="">
  93. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  94. <preview url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/preview.jpg" />
  95. <image type="CUBE" multires="true" tilesize="512">
  96. <level tiledimagewidth="5184" tiledimageheight="5184">
  97. <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  98. </level>
  99. <level tiledimagewidth="2624" tiledimageheight="2624">
  100. <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  101. </level>
  102. <level tiledimagewidth="1280" tiledimageheight="1280">
  103. <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  104. </level>
  105. <level tiledimagewidth="640" tiledimageheight="640">
  106. <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  107. </level>
  108. </image>
  109. </scene>
  110. <scene name="scene_LC720_hDq1alMFN" title="LC720_hDq1alMFN" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/thumb.jpg" lat="" lng="" heading="">
  111. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  112. <preview url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/preview.jpg" />
  113. <image type="CUBE" multires="true" tilesize="512">
  114. <level tiledimagewidth="5184" tiledimageheight="5184">
  115. <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  116. </level>
  117. <level tiledimagewidth="2624" tiledimageheight="2624">
  118. <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  119. </level>
  120. <level tiledimagewidth="1280" tiledimageheight="1280">
  121. <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  122. </level>
  123. <level tiledimagewidth="640" tiledimageheight="640">
  124. <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  125. </level>
  126. </image>
  127. </scene>
  128. <scene name="scene_LC720_A0QtwCq2z" title="LC720_A0QtwCq2z" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/thumb.jpg" lat="" lng="" heading="">
  129. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  130. <preview url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/preview.jpg" />
  131. <image type="CUBE" multires="true" tilesize="512">
  132. <level tiledimagewidth="5184" tiledimageheight="5184">
  133. <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  134. </level>
  135. <level tiledimagewidth="2624" tiledimageheight="2624">
  136. <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  137. </level>
  138. <level tiledimagewidth="1280" tiledimageheight="1280">
  139. <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  140. </level>
  141. <level tiledimagewidth="640" tiledimageheight="640">
  142. <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  143. </level>
  144. </image>
  145. </scene>
  146. <scene name="scene_LC720_3c4hhDiqi" title="LC720_3c4hhDiqi" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/thumb.jpg" lat="" lng="" heading="">
  147. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  148. <preview url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/preview.jpg" />
  149. <image type="CUBE" multires="true" tilesize="512">
  150. <level tiledimagewidth="5184" tiledimageheight="5184">
  151. <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  152. </level>
  153. <level tiledimagewidth="2624" tiledimageheight="2624">
  154. <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  155. </level>
  156. <level tiledimagewidth="1280" tiledimageheight="1280">
  157. <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  158. </level>
  159. <level tiledimagewidth="640" tiledimageheight="640">
  160. <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  161. </level>
  162. </image>
  163. </scene>
  164. <scene name="scene_LC720_dt3sHmU6o" title="LC720_dt3sHmU6o" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/thumb.jpg" lat="" lng="" heading="">
  165. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  166. <preview url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/preview.jpg" />
  167. <image type="CUBE" multires="true" tilesize="512">
  168. <level tiledimagewidth="5184" tiledimageheight="5184">
  169. <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  170. </level>
  171. <level tiledimagewidth="2624" tiledimageheight="2624">
  172. <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  173. </level>
  174. <level tiledimagewidth="1280" tiledimageheight="1280">
  175. <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  176. </level>
  177. <level tiledimagewidth="640" tiledimageheight="640">
  178. <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  179. </level>
  180. </image>
  181. </scene>
  182. <scene name="scene_LC720_vlQLBBVTG" title="LC720_vlQLBBVTG" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/thumb.jpg" lat="" lng="" heading="">
  183. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  184. <preview url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/preview.jpg" />
  185. <image type="CUBE" multires="true" tilesize="512">
  186. <level tiledimagewidth="5184" tiledimageheight="5184">
  187. <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  188. </level>
  189. <level tiledimagewidth="2624" tiledimageheight="2624">
  190. <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  191. </level>
  192. <level tiledimagewidth="1280" tiledimageheight="1280">
  193. <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  194. </level>
  195. <level tiledimagewidth="640" tiledimageheight="640">
  196. <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  197. </level>
  198. </image>
  199. </scene>
  200. <scene name="scene_LC720_Xst5LXC3z" title="LC720_Xst5LXC3z" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/thumb.jpg" lat="" lng="" heading="">
  201. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  202. <preview url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/preview.jpg" />
  203. <image type="CUBE" multires="true" tilesize="512">
  204. <level tiledimagewidth="5184" tiledimageheight="5184">
  205. <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  206. </level>
  207. <level tiledimagewidth="2624" tiledimageheight="2624">
  208. <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  209. </level>
  210. <level tiledimagewidth="1280" tiledimageheight="1280">
  211. <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  212. </level>
  213. <level tiledimagewidth="640" tiledimageheight="640">
  214. <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  215. </level>
  216. </image>
  217. </scene>
  218. <scene name="scene_LC720_IcSphivdv" title="LC720_IcSphivdv" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/thumb.jpg" lat="" lng="" heading="">
  219. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  220. <preview url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/preview.jpg" />
  221. <image type="CUBE" multires="true" tilesize="512">
  222. <level tiledimagewidth="5184" tiledimageheight="5184">
  223. <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  224. </level>
  225. <level tiledimagewidth="2624" tiledimageheight="2624">
  226. <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  227. </level>
  228. <level tiledimagewidth="1280" tiledimageheight="1280">
  229. <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  230. </level>
  231. <level tiledimagewidth="640" tiledimageheight="640">
  232. <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  233. </level>
  234. </image>
  235. </scene>
  236. <scene name="scene_LC720_O7NgjT55L" title="LC720_O7NgjT55L" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/thumb.jpg" lat="" lng="" heading="">
  237. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  238. <preview url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/preview.jpg" />
  239. <image type="CUBE" multires="true" tilesize="512">
  240. <level tiledimagewidth="5184" tiledimageheight="5184">
  241. <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  242. </level>
  243. <level tiledimagewidth="2624" tiledimageheight="2624">
  244. <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  245. </level>
  246. <level tiledimagewidth="1280" tiledimageheight="1280">
  247. <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  248. </level>
  249. <level tiledimagewidth="640" tiledimageheight="640">
  250. <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  251. </level>
  252. </image>
  253. </scene>
  254. <scene name="scene_LC720_5B6XVhHMq" title="LC720_5B6XVhHMq" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/thumb.jpg" lat="" lng="" heading="">
  255. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  256. <preview url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/preview.jpg" />
  257. <image type="CUBE" multires="true" tilesize="512">
  258. <level tiledimagewidth="5184" tiledimageheight="5184">
  259. <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  260. </level>
  261. <level tiledimagewidth="2624" tiledimageheight="2624">
  262. <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  263. </level>
  264. <level tiledimagewidth="1280" tiledimageheight="1280">
  265. <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  266. </level>
  267. <level tiledimagewidth="640" tiledimageheight="640">
  268. <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  269. </level>
  270. </image>
  271. </scene>
  272. <scene name="scene_LC720_0igV3nHKX" title="LC720_0igV3nHKX" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/thumb.jpg" lat="" lng="" heading="">
  273. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  274. <preview url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/preview.jpg" />
  275. <image type="CUBE" multires="true" tilesize="512">
  276. <level tiledimagewidth="5184" tiledimageheight="5184">
  277. <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  278. </level>
  279. <level tiledimagewidth="2624" tiledimageheight="2624">
  280. <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  281. </level>
  282. <level tiledimagewidth="1280" tiledimageheight="1280">
  283. <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  284. </level>
  285. <level tiledimagewidth="640" tiledimageheight="640">
  286. <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  287. </level>
  288. </image>
  289. </scene>
  290. <scene name="scene_LC720_a9XnETz3k" title="LC720_a9XnETz3k" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/thumb.jpg" lat="" lng="" heading="">
  291. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  292. <preview url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/preview.jpg" />
  293. <image type="CUBE" multires="true" tilesize="512">
  294. <level tiledimagewidth="5184" tiledimageheight="5184">
  295. <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  296. </level>
  297. <level tiledimagewidth="2624" tiledimageheight="2624">
  298. <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  299. </level>
  300. <level tiledimagewidth="1280" tiledimageheight="1280">
  301. <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  302. </level>
  303. <level tiledimagewidth="640" tiledimageheight="640">
  304. <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  305. </level>
  306. </image>
  307. </scene>
  308. <scene name="scene_LC720_ho3Nbu5OP" title="LC720_ho3Nbu5OP" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/thumb.jpg" lat="" lng="" heading="">
  309. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  310. <preview url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/preview.jpg" />
  311. <image type="CUBE" multires="true" tilesize="512">
  312. <level tiledimagewidth="5184" tiledimageheight="5184">
  313. <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  314. </level>
  315. <level tiledimagewidth="2624" tiledimageheight="2624">
  316. <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  317. </level>
  318. <level tiledimagewidth="1280" tiledimageheight="1280">
  319. <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  320. </level>
  321. <level tiledimagewidth="640" tiledimageheight="640">
  322. <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  323. </level>
  324. </image>
  325. </scene>
  326. <scene name="scene_LC720_FJGw28k9B" title="LC720_FJGw28k9B" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/thumb.jpg" lat="" lng="" heading="">
  327. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  328. <preview url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/preview.jpg" />
  329. <image type="CUBE" multires="true" tilesize="512">
  330. <level tiledimagewidth="5184" tiledimageheight="5184">
  331. <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  332. </level>
  333. <level tiledimagewidth="2624" tiledimageheight="2624">
  334. <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  335. </level>
  336. <level tiledimagewidth="1280" tiledimageheight="1280">
  337. <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  338. </level>
  339. <level tiledimagewidth="640" tiledimageheight="640">
  340. <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  341. </level>
  342. </image>
  343. </scene>
  344. <scene name="scene_LC720_HaRtliJM3" title="LC720_HaRtliJM3" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/thumb.jpg" lat="" lng="" heading="">
  345. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  346. <preview url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/preview.jpg" />
  347. <image type="CUBE" multires="true" tilesize="512">
  348. <level tiledimagewidth="5184" tiledimageheight="5184">
  349. <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  350. </level>
  351. <level tiledimagewidth="2624" tiledimageheight="2624">
  352. <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  353. </level>
  354. <level tiledimagewidth="1280" tiledimageheight="1280">
  355. <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  356. </level>
  357. <level tiledimagewidth="640" tiledimageheight="640">
  358. <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  359. </level>
  360. </image>
  361. </scene>
  362. <scene name="scene_LC720_DEuYnfBsN" title="LC720_DEuYnfBsN" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/thumb.jpg" lat="" lng="" heading="">
  363. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  364. <preview url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/preview.jpg" />
  365. <image type="CUBE" multires="true" tilesize="512">
  366. <level tiledimagewidth="5184" tiledimageheight="5184">
  367. <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  368. </level>
  369. <level tiledimagewidth="2624" tiledimageheight="2624">
  370. <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  371. </level>
  372. <level tiledimagewidth="1280" tiledimageheight="1280">
  373. <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  374. </level>
  375. <level tiledimagewidth="640" tiledimageheight="640">
  376. <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  377. </level>
  378. </image>
  379. </scene>
  380. <scene name="scene_LC720_OTDOCzDCL" title="LC720_OTDOCzDCL" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/thumb.jpg" lat="" lng="" heading="">
  381. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  382. <preview url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/preview.jpg" />
  383. <image type="CUBE" multires="true" tilesize="512">
  384. <level tiledimagewidth="5184" tiledimageheight="5184">
  385. <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  386. </level>
  387. <level tiledimagewidth="2624" tiledimageheight="2624">
  388. <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  389. </level>
  390. <level tiledimagewidth="1280" tiledimageheight="1280">
  391. <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  392. </level>
  393. <level tiledimagewidth="640" tiledimageheight="640">
  394. <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  395. </level>
  396. </image>
  397. </scene>
  398. <scene name="scene_LC720_Z1SIQQ8fu" title="LC720_Z1SIQQ8fu" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/thumb.jpg" lat="" lng="" heading="">
  399. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  400. <preview url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/preview.jpg" />
  401. <image type="CUBE" multires="true" tilesize="512">
  402. <level tiledimagewidth="5184" tiledimageheight="5184">
  403. <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  404. </level>
  405. <level tiledimagewidth="2624" tiledimageheight="2624">
  406. <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  407. </level>
  408. <level tiledimagewidth="1280" tiledimageheight="1280">
  409. <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  410. </level>
  411. <level tiledimagewidth="640" tiledimageheight="640">
  412. <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  413. </level>
  414. </image>
  415. </scene>
  416. <scene name="scene_LC720_BhrNaLk8Y" title="LC720_BhrNaLk8Y" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/thumb.jpg" lat="" lng="" heading="">
  417. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  418. <preview url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/preview.jpg" />
  419. <image type="CUBE" multires="true" tilesize="512">
  420. <level tiledimagewidth="5184" tiledimageheight="5184">
  421. <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  422. </level>
  423. <level tiledimagewidth="2624" tiledimageheight="2624">
  424. <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  425. </level>
  426. <level tiledimagewidth="1280" tiledimageheight="1280">
  427. <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  428. </level>
  429. <level tiledimagewidth="640" tiledimageheight="640">
  430. <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  431. </level>
  432. </image>
  433. </scene>
  434. <scene name="scene_LC720_HMZFJo228" title="LC720_HMZFJo228" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/thumb.jpg" lat="" lng="" heading="">
  435. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  436. <preview url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/preview.jpg" />
  437. <image type="CUBE" multires="true" tilesize="512">
  438. <level tiledimagewidth="5184" tiledimageheight="5184">
  439. <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  440. </level>
  441. <level tiledimagewidth="2624" tiledimageheight="2624">
  442. <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  443. </level>
  444. <level tiledimagewidth="1280" tiledimageheight="1280">
  445. <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  446. </level>
  447. <level tiledimagewidth="640" tiledimageheight="640">
  448. <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  449. </level>
  450. </image>
  451. </scene>
  452. <scene name="scene_LC720_XplUziNn8" title="LC720_XplUziNn8" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/thumb.jpg" lat="" lng="" heading="">
  453. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  454. <preview url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/preview.jpg" />
  455. <image type="CUBE" multires="true" tilesize="512">
  456. <level tiledimagewidth="5184" tiledimageheight="5184">
  457. <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  458. </level>
  459. <level tiledimagewidth="2624" tiledimageheight="2624">
  460. <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  461. </level>
  462. <level tiledimagewidth="1280" tiledimageheight="1280">
  463. <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  464. </level>
  465. <level tiledimagewidth="640" tiledimageheight="640">
  466. <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  467. </level>
  468. </image>
  469. </scene>
  470. <scene name="scene_LC720_BEPETi52W" title="LC720_BEPETi52W" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/thumb.jpg" lat="" lng="" heading="">
  471. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  472. <preview url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/preview.jpg" />
  473. <image type="CUBE" multires="true" tilesize="512">
  474. <level tiledimagewidth="5184" tiledimageheight="5184">
  475. <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  476. </level>
  477. <level tiledimagewidth="2624" tiledimageheight="2624">
  478. <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  479. </level>
  480. <level tiledimagewidth="1280" tiledimageheight="1280">
  481. <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  482. </level>
  483. <level tiledimagewidth="640" tiledimageheight="640">
  484. <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  485. </level>
  486. </image>
  487. </scene>
  488. <scene name="scene_LC720_nzVR4b849" title="LC720_nzVR4b849" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/thumb.jpg" lat="" lng="" heading="">
  489. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  490. <preview url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/preview.jpg" />
  491. <image type="CUBE" multires="true" tilesize="512">
  492. <level tiledimagewidth="5184" tiledimageheight="5184">
  493. <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  494. </level>
  495. <level tiledimagewidth="2624" tiledimageheight="2624">
  496. <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  497. </level>
  498. <level tiledimagewidth="1280" tiledimageheight="1280">
  499. <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  500. </level>
  501. <level tiledimagewidth="640" tiledimageheight="640">
  502. <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  503. </level>
  504. </image>
  505. </scene>
  506. <scene name="scene_LC720_HeFPKGner" title="LC720_HeFPKGner" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/thumb.jpg" lat="" lng="" heading="">
  507. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  508. <preview url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/preview.jpg" />
  509. <image type="CUBE" multires="true" tilesize="512">
  510. <level tiledimagewidth="5184" tiledimageheight="5184">
  511. <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  512. </level>
  513. <level tiledimagewidth="2624" tiledimageheight="2624">
  514. <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  515. </level>
  516. <level tiledimagewidth="1280" tiledimageheight="1280">
  517. <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  518. </level>
  519. <level tiledimagewidth="640" tiledimageheight="640">
  520. <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  521. </level>
  522. </image>
  523. </scene>
  524. <scene name="scene_LC720_Nm6KFDHYK" title="LC720_Nm6KFDHYK" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/thumb.jpg" lat="" lng="" heading="">
  525. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  526. <preview url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/preview.jpg" />
  527. <image type="CUBE" multires="true" tilesize="512">
  528. <level tiledimagewidth="5184" tiledimageheight="5184">
  529. <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  530. </level>
  531. <level tiledimagewidth="2624" tiledimageheight="2624">
  532. <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  533. </level>
  534. <level tiledimagewidth="1280" tiledimageheight="1280">
  535. <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  536. </level>
  537. <level tiledimagewidth="640" tiledimageheight="640">
  538. <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  539. </level>
  540. </image>
  541. </scene>
  542. <scene name="scene_LC720_aGOB0nwZT" title="LC720_aGOB0nwZT" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/thumb.jpg" lat="" lng="" heading="">
  543. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  544. <preview url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/preview.jpg" />
  545. <image type="CUBE" multires="true" tilesize="512">
  546. <level tiledimagewidth="5184" tiledimageheight="5184">
  547. <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  548. </level>
  549. <level tiledimagewidth="2624" tiledimageheight="2624">
  550. <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  551. </level>
  552. <level tiledimagewidth="1280" tiledimageheight="1280">
  553. <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  554. </level>
  555. <level tiledimagewidth="640" tiledimageheight="640">
  556. <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  557. </level>
  558. </image>
  559. </scene>
  560. <scene name="scene_LC720_fkWCpMyQy" title="LC720_fkWCpMyQy" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/thumb.jpg" lat="" lng="" heading="">
  561. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  562. <preview url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/preview.jpg" />
  563. <image type="CUBE" multires="true" tilesize="512">
  564. <level tiledimagewidth="5184" tiledimageheight="5184">
  565. <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  566. </level>
  567. <level tiledimagewidth="2624" tiledimageheight="2624">
  568. <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  569. </level>
  570. <level tiledimagewidth="1280" tiledimageheight="1280">
  571. <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  572. </level>
  573. <level tiledimagewidth="640" tiledimageheight="640">
  574. <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  575. </level>
  576. </image>
  577. </scene>
  578. <scene name="scene_LC720_PdhHt3nXd" title="LC720_PdhHt3nXd" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/thumb.jpg" lat="" lng="" heading="">
  579. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  580. <preview url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/preview.jpg" />
  581. <image type="CUBE" multires="true" tilesize="512">
  582. <level tiledimagewidth="5184" tiledimageheight="5184">
  583. <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  584. </level>
  585. <level tiledimagewidth="2624" tiledimageheight="2624">
  586. <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  587. </level>
  588. <level tiledimagewidth="1280" tiledimageheight="1280">
  589. <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  590. </level>
  591. <level tiledimagewidth="640" tiledimageheight="640">
  592. <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  593. </level>
  594. </image>
  595. </scene>
  596. <scene name="scene_LC720_ppfiNQSS0" title="LC720_ppfiNQSS0" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/thumb.jpg" lat="" lng="" heading="">
  597. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  598. <preview url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/preview.jpg" />
  599. <image type="CUBE" multires="true" tilesize="512">
  600. <level tiledimagewidth="5184" tiledimageheight="5184">
  601. <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  602. </level>
  603. <level tiledimagewidth="2624" tiledimageheight="2624">
  604. <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  605. </level>
  606. <level tiledimagewidth="1280" tiledimageheight="1280">
  607. <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  608. </level>
  609. <level tiledimagewidth="640" tiledimageheight="640">
  610. <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  611. </level>
  612. </image>
  613. </scene>
  614. <scene name="scene_LC720_5mBTsiaPY" title="LC720_5mBTsiaPY" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/thumb.jpg" lat="" lng="" heading="">
  615. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  616. <preview url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/preview.jpg" />
  617. <image type="CUBE" multires="true" tilesize="512">
  618. <level tiledimagewidth="5184" tiledimageheight="5184">
  619. <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  620. </level>
  621. <level tiledimagewidth="2624" tiledimageheight="2624">
  622. <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  623. </level>
  624. <level tiledimagewidth="1280" tiledimageheight="1280">
  625. <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  626. </level>
  627. <level tiledimagewidth="640" tiledimageheight="640">
  628. <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  629. </level>
  630. </image>
  631. </scene>
  632. <scene name="scene_LC720_XVIR6wFjP" title="LC720_XVIR6wFjP" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/thumb.jpg" lat="" lng="" heading="">
  633. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  634. <preview url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/preview.jpg" />
  635. <image type="CUBE" multires="true" tilesize="512">
  636. <level tiledimagewidth="5184" tiledimageheight="5184">
  637. <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  638. </level>
  639. <level tiledimagewidth="2624" tiledimageheight="2624">
  640. <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  641. </level>
  642. <level tiledimagewidth="1280" tiledimageheight="1280">
  643. <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  644. </level>
  645. <level tiledimagewidth="640" tiledimageheight="640">
  646. <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  647. </level>
  648. </image>
  649. </scene>
  650. <scene name="scene_LC720_r0l1EUw20" title="LC720_r0l1EUw20" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/thumb.jpg" lat="" lng="" heading="">
  651. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  652. <preview url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/preview.jpg" />
  653. <image type="CUBE" multires="true" tilesize="512">
  654. <level tiledimagewidth="5184" tiledimageheight="5184">
  655. <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  656. </level>
  657. <level tiledimagewidth="2624" tiledimageheight="2624">
  658. <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  659. </level>
  660. <level tiledimagewidth="1280" tiledimageheight="1280">
  661. <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  662. </level>
  663. <level tiledimagewidth="640" tiledimageheight="640">
  664. <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  665. </level>
  666. </image>
  667. </scene>
  668. <scene name="scene_LC720_sf1F9Ez3X" title="LC720_sf1F9Ez3X" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/thumb.jpg" lat="" lng="" heading="">
  669. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  670. <preview url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/preview.jpg" />
  671. <image type="CUBE" multires="true" tilesize="512">
  672. <level tiledimagewidth="5184" tiledimageheight="5184">
  673. <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  674. </level>
  675. <level tiledimagewidth="2624" tiledimageheight="2624">
  676. <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  677. </level>
  678. <level tiledimagewidth="1280" tiledimageheight="1280">
  679. <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  680. </level>
  681. <level tiledimagewidth="640" tiledimageheight="640">
  682. <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  683. </level>
  684. </image>
  685. </scene>
  686. <scene name="scene_LC720_arVjj5Z34" title="LC720_arVjj5Z34" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/thumb.jpg" lat="" lng="" heading="">
  687. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  688. <preview url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/preview.jpg" />
  689. <image type="CUBE" multires="true" tilesize="512">
  690. <level tiledimagewidth="5184" tiledimageheight="5184">
  691. <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  692. </level>
  693. <level tiledimagewidth="2624" tiledimageheight="2624">
  694. <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  695. </level>
  696. <level tiledimagewidth="1280" tiledimageheight="1280">
  697. <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  698. </level>
  699. <level tiledimagewidth="640" tiledimageheight="640">
  700. <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  701. </level>
  702. </image>
  703. </scene>
  704. <scene name="scene_LC720_lAUSDZkCu" title="LC720_lAUSDZkCu" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/thumb.jpg" lat="" lng="" heading="">
  705. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  706. <preview url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/preview.jpg" />
  707. <image type="CUBE" multires="true" tilesize="512">
  708. <level tiledimagewidth="5184" tiledimageheight="5184">
  709. <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  710. </level>
  711. <level tiledimagewidth="2624" tiledimageheight="2624">
  712. <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  713. </level>
  714. <level tiledimagewidth="1280" tiledimageheight="1280">
  715. <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  716. </level>
  717. <level tiledimagewidth="640" tiledimageheight="640">
  718. <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  719. </level>
  720. </image>
  721. </scene>
  722. <scene name="scene_LC720_o4oOm7j3p" title="LC720_o4oOm7j3p" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/thumb.jpg" lat="" lng="" heading="">
  723. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  724. <preview url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/preview.jpg" />
  725. <image type="CUBE" multires="true" tilesize="512">
  726. <level tiledimagewidth="5184" tiledimageheight="5184">
  727. <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  728. </level>
  729. <level tiledimagewidth="2624" tiledimageheight="2624">
  730. <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  731. </level>
  732. <level tiledimagewidth="1280" tiledimageheight="1280">
  733. <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  734. </level>
  735. <level tiledimagewidth="640" tiledimageheight="640">
  736. <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  737. </level>
  738. </image>
  739. </scene>
  740. <scene name="scene_LC720_XUpZCRFoE" title="LC720_XUpZCRFoE" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/thumb.jpg" lat="" lng="" heading="">
  741. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  742. <preview url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/preview.jpg" />
  743. <image type="CUBE" multires="true" tilesize="512">
  744. <level tiledimagewidth="5184" tiledimageheight="5184">
  745. <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  746. </level>
  747. <level tiledimagewidth="2624" tiledimageheight="2624">
  748. <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  749. </level>
  750. <level tiledimagewidth="1280" tiledimageheight="1280">
  751. <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  752. </level>
  753. <level tiledimagewidth="640" tiledimageheight="640">
  754. <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  755. </level>
  756. </image>
  757. </scene>
  758. <scene name="scene_LC720_fIIMRz38q" title="LC720_fIIMRz38q" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/thumb.jpg" lat="" lng="" heading="">
  759. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  760. <preview url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/preview.jpg" />
  761. <image type="CUBE" multires="true" tilesize="512">
  762. <level tiledimagewidth="5184" tiledimageheight="5184">
  763. <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  764. </level>
  765. <level tiledimagewidth="2624" tiledimageheight="2624">
  766. <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  767. </level>
  768. <level tiledimagewidth="1280" tiledimageheight="1280">
  769. <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  770. </level>
  771. <level tiledimagewidth="640" tiledimageheight="640">
  772. <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  773. </level>
  774. </image>
  775. </scene>
  776. <scene name="scene_LC720_esKwTbCvm" title="LC720_esKwTbCvm" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/thumb.jpg" lat="" lng="" heading="">
  777. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  778. <preview url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/preview.jpg" />
  779. <image type="CUBE" multires="true" tilesize="512">
  780. <level tiledimagewidth="5184" tiledimageheight="5184">
  781. <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  782. </level>
  783. <level tiledimagewidth="2624" tiledimageheight="2624">
  784. <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  785. </level>
  786. <level tiledimagewidth="1280" tiledimageheight="1280">
  787. <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  788. </level>
  789. <level tiledimagewidth="640" tiledimageheight="640">
  790. <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  791. </level>
  792. </image>
  793. </scene>
  794. <scene name="scene_LC720_s3EPCZ7W1" title="LC720_s3EPCZ7W1" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/thumb.jpg" lat="" lng="" heading="">
  795. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  796. <preview url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/preview.jpg" />
  797. <image type="CUBE" multires="true" tilesize="512">
  798. <level tiledimagewidth="5184" tiledimageheight="5184">
  799. <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  800. </level>
  801. <level tiledimagewidth="2624" tiledimageheight="2624">
  802. <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  803. </level>
  804. <level tiledimagewidth="1280" tiledimageheight="1280">
  805. <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  806. </level>
  807. <level tiledimagewidth="640" tiledimageheight="640">
  808. <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  809. </level>
  810. </image>
  811. </scene>
  812. <scene name="scene_LC720_CCw6fuqdU" title="LC720_CCw6fuqdU" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/thumb.jpg" lat="" lng="" heading="">
  813. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  814. <preview url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/preview.jpg" />
  815. <image type="CUBE" multires="true" tilesize="512">
  816. <level tiledimagewidth="5184" tiledimageheight="5184">
  817. <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  818. </level>
  819. <level tiledimagewidth="2624" tiledimageheight="2624">
  820. <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  821. </level>
  822. <level tiledimagewidth="1280" tiledimageheight="1280">
  823. <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  824. </level>
  825. <level tiledimagewidth="640" tiledimageheight="640">
  826. <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  827. </level>
  828. </image>
  829. </scene>
  830. <scene name="scene_LC720_zqYuabIAd" title="LC720_zqYuabIAd" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/thumb.jpg" lat="" lng="" heading="">
  831. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  832. <preview url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/preview.jpg" />
  833. <image type="CUBE" multires="true" tilesize="512">
  834. <level tiledimagewidth="5184" tiledimageheight="5184">
  835. <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  836. </level>
  837. <level tiledimagewidth="2624" tiledimageheight="2624">
  838. <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  839. </level>
  840. <level tiledimagewidth="1280" tiledimageheight="1280">
  841. <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  842. </level>
  843. <level tiledimagewidth="640" tiledimageheight="640">
  844. <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  845. </level>
  846. </image>
  847. </scene>
  848. <scene name="scene_LC720_nOYT6bLD3" title="LC720_nOYT6bLD3" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/thumb.jpg" lat="" lng="" heading="">
  849. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  850. <preview url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/preview.jpg" />
  851. <image type="CUBE" multires="true" tilesize="512">
  852. <level tiledimagewidth="5184" tiledimageheight="5184">
  853. <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  854. </level>
  855. <level tiledimagewidth="2624" tiledimageheight="2624">
  856. <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  857. </level>
  858. <level tiledimagewidth="1280" tiledimageheight="1280">
  859. <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  860. </level>
  861. <level tiledimagewidth="640" tiledimageheight="640">
  862. <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  863. </level>
  864. </image>
  865. </scene>
  866. <scene name="scene_LC720_RgFv6tzFe" title="LC720_RgFv6tzFe" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/thumb.jpg" lat="" lng="" heading="">
  867. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  868. <preview url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/preview.jpg" />
  869. <image type="CUBE" multires="true" tilesize="512">
  870. <level tiledimagewidth="5184" tiledimageheight="5184">
  871. <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  872. </level>
  873. <level tiledimagewidth="2624" tiledimageheight="2624">
  874. <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  875. </level>
  876. <level tiledimagewidth="1280" tiledimageheight="1280">
  877. <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  878. </level>
  879. <level tiledimagewidth="640" tiledimageheight="640">
  880. <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  881. </level>
  882. </image>
  883. </scene>
  884. <scene name="scene_LC720_oweZ7Pmao" title="LC720_oweZ7Pmao" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/thumb.jpg" lat="" lng="" heading="">
  885. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  886. <preview url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/preview.jpg" />
  887. <image type="CUBE" multires="true" tilesize="512">
  888. <level tiledimagewidth="5184" tiledimageheight="5184">
  889. <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  890. </level>
  891. <level tiledimagewidth="2624" tiledimageheight="2624">
  892. <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  893. </level>
  894. <level tiledimagewidth="1280" tiledimageheight="1280">
  895. <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  896. </level>
  897. <level tiledimagewidth="640" tiledimageheight="640">
  898. <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  899. </level>
  900. </image>
  901. </scene>
  902. <scene name="scene_LC720_ZFLkkx57h" title="LC720_ZFLkkx57h" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/thumb.jpg" lat="" lng="" heading="">
  903. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  904. <preview url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/preview.jpg" />
  905. <image type="CUBE" multires="true" tilesize="512">
  906. <level tiledimagewidth="5184" tiledimageheight="5184">
  907. <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  908. </level>
  909. <level tiledimagewidth="2624" tiledimageheight="2624">
  910. <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  911. </level>
  912. <level tiledimagewidth="1280" tiledimageheight="1280">
  913. <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  914. </level>
  915. <level tiledimagewidth="640" tiledimageheight="640">
  916. <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  917. </level>
  918. </image>
  919. </scene>
  920. <scene name="scene_LC720_kCX2Zvs8k" title="LC720_kCX2Zvs8k" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/thumb.jpg" lat="" lng="" heading="">
  921. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  922. <preview url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/preview.jpg" />
  923. <image type="CUBE" multires="true" tilesize="512">
  924. <level tiledimagewidth="5184" tiledimageheight="5184">
  925. <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  926. </level>
  927. <level tiledimagewidth="2624" tiledimageheight="2624">
  928. <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  929. </level>
  930. <level tiledimagewidth="1280" tiledimageheight="1280">
  931. <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  932. </level>
  933. <level tiledimagewidth="640" tiledimageheight="640">
  934. <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  935. </level>
  936. </image>
  937. </scene>
  938. <scene name="scene_LC720_aFp34IfL6" title="LC720_aFp34IfL6" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/thumb.jpg" lat="" lng="" heading="">
  939. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  940. <preview url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/preview.jpg" />
  941. <image type="CUBE" multires="true" tilesize="512">
  942. <level tiledimagewidth="5184" tiledimageheight="5184">
  943. <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  944. </level>
  945. <level tiledimagewidth="2624" tiledimageheight="2624">
  946. <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  947. </level>
  948. <level tiledimagewidth="1280" tiledimageheight="1280">
  949. <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  950. </level>
  951. <level tiledimagewidth="640" tiledimageheight="640">
  952. <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  953. </level>
  954. </image>
  955. </scene>
  956. <scene name="scene_LC720_GQPmmjBFn" title="LC720_GQPmmjBFn" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/thumb.jpg" lat="" lng="" heading="">
  957. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  958. <preview url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/preview.jpg" />
  959. <image type="CUBE" multires="true" tilesize="512">
  960. <level tiledimagewidth="5184" tiledimageheight="5184">
  961. <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  962. </level>
  963. <level tiledimagewidth="2624" tiledimageheight="2624">
  964. <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  965. </level>
  966. <level tiledimagewidth="1280" tiledimageheight="1280">
  967. <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  968. </level>
  969. <level tiledimagewidth="640" tiledimageheight="640">
  970. <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  971. </level>
  972. </image>
  973. </scene>
  974. <scene name="scene_LC720_ykAdWYJVl" title="LC720_ykAdWYJVl" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/thumb.jpg" lat="" lng="" heading="">
  975. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  976. <preview url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/preview.jpg" />
  977. <image type="CUBE" multires="true" tilesize="512">
  978. <level tiledimagewidth="5184" tiledimageheight="5184">
  979. <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  980. </level>
  981. <level tiledimagewidth="2624" tiledimageheight="2624">
  982. <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  983. </level>
  984. <level tiledimagewidth="1280" tiledimageheight="1280">
  985. <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  986. </level>
  987. <level tiledimagewidth="640" tiledimageheight="640">
  988. <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  989. </level>
  990. </image>
  991. </scene>
  992. <scene name="scene_LC720_K37J1GDpT" title="LC720_K37J1GDpT" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/thumb.jpg" lat="" lng="" heading="">
  993. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  994. <preview url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/preview.jpg" />
  995. <image type="CUBE" multires="true" tilesize="512">
  996. <level tiledimagewidth="5184" tiledimageheight="5184">
  997. <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  998. </level>
  999. <level tiledimagewidth="2624" tiledimageheight="2624">
  1000. <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1001. </level>
  1002. <level tiledimagewidth="1280" tiledimageheight="1280">
  1003. <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1004. </level>
  1005. <level tiledimagewidth="640" tiledimageheight="640">
  1006. <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1007. </level>
  1008. </image>
  1009. </scene>
  1010. <scene name="scene_LC720_r5y180R4M" title="LC720_r5y180R4M" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/thumb.jpg" lat="" lng="" heading="">
  1011. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1012. <preview url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/preview.jpg" />
  1013. <image type="CUBE" multires="true" tilesize="512">
  1014. <level tiledimagewidth="5184" tiledimageheight="5184">
  1015. <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1016. </level>
  1017. <level tiledimagewidth="2624" tiledimageheight="2624">
  1018. <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1019. </level>
  1020. <level tiledimagewidth="1280" tiledimageheight="1280">
  1021. <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1022. </level>
  1023. <level tiledimagewidth="640" tiledimageheight="640">
  1024. <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1025. </level>
  1026. </image>
  1027. </scene>
  1028. <scene name="scene_LC720_jyHF5dLNg" title="LC720_jyHF5dLNg" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/thumb.jpg" lat="" lng="" heading="">
  1029. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1030. <preview url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/preview.jpg" />
  1031. <image type="CUBE" multires="true" tilesize="512">
  1032. <level tiledimagewidth="5184" tiledimageheight="5184">
  1033. <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1034. </level>
  1035. <level tiledimagewidth="2624" tiledimageheight="2624">
  1036. <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1037. </level>
  1038. <level tiledimagewidth="1280" tiledimageheight="1280">
  1039. <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1040. </level>
  1041. <level tiledimagewidth="640" tiledimageheight="640">
  1042. <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1043. </level>
  1044. </image>
  1045. </scene>
  1046. <scene name="scene_LC720_87PZRacrR" title="LC720_87PZRacrR" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/thumb.jpg" lat="" lng="" heading="">
  1047. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1048. <preview url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/preview.jpg" />
  1049. <image type="CUBE" multires="true" tilesize="512">
  1050. <level tiledimagewidth="5184" tiledimageheight="5184">
  1051. <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1052. </level>
  1053. <level tiledimagewidth="2624" tiledimageheight="2624">
  1054. <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1055. </level>
  1056. <level tiledimagewidth="1280" tiledimageheight="1280">
  1057. <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1058. </level>
  1059. <level tiledimagewidth="640" tiledimageheight="640">
  1060. <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1061. </level>
  1062. </image>
  1063. </scene>
  1064. <scene name="scene_LC720_L0DgYkG5b" title="LC720_L0DgYkG5b" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/thumb.jpg" lat="" lng="" heading="">
  1065. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1066. <preview url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/preview.jpg" />
  1067. <image type="CUBE" multires="true" tilesize="512">
  1068. <level tiledimagewidth="5184" tiledimageheight="5184">
  1069. <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1070. </level>
  1071. <level tiledimagewidth="2624" tiledimageheight="2624">
  1072. <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1073. </level>
  1074. <level tiledimagewidth="1280" tiledimageheight="1280">
  1075. <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1076. </level>
  1077. <level tiledimagewidth="640" tiledimageheight="640">
  1078. <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1079. </level>
  1080. </image>
  1081. </scene>
  1082. <scene name="scene_LC720_tP29sauGi" title="LC720_tP29sauGi" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/thumb.jpg" lat="" lng="" heading="">
  1083. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1084. <preview url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/preview.jpg" />
  1085. <image type="CUBE" multires="true" tilesize="512">
  1086. <level tiledimagewidth="5184" tiledimageheight="5184">
  1087. <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1088. </level>
  1089. <level tiledimagewidth="2624" tiledimageheight="2624">
  1090. <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1091. </level>
  1092. <level tiledimagewidth="1280" tiledimageheight="1280">
  1093. <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1094. </level>
  1095. <level tiledimagewidth="640" tiledimageheight="640">
  1096. <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1097. </level>
  1098. </image>
  1099. </scene>
  1100. <scene name="scene_LC720_2yY3eqGBx" title="LC720_2yY3eqGBx" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/thumb.jpg" lat="" lng="" heading="">
  1101. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1102. <preview url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/preview.jpg" />
  1103. <image type="CUBE" multires="true" tilesize="512">
  1104. <level tiledimagewidth="5184" tiledimageheight="5184">
  1105. <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1106. </level>
  1107. <level tiledimagewidth="2624" tiledimageheight="2624">
  1108. <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1109. </level>
  1110. <level tiledimagewidth="1280" tiledimageheight="1280">
  1111. <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1112. </level>
  1113. <level tiledimagewidth="640" tiledimageheight="640">
  1114. <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1115. </level>
  1116. </image>
  1117. </scene>
  1118. <scene name="scene_LC720_q6nUoDVXu" title="LC720_q6nUoDVXu" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/thumb.jpg" lat="" lng="" heading="">
  1119. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1120. <preview url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/preview.jpg" />
  1121. <image type="CUBE" multires="true" tilesize="512">
  1122. <level tiledimagewidth="5184" tiledimageheight="5184">
  1123. <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1124. </level>
  1125. <level tiledimagewidth="2624" tiledimageheight="2624">
  1126. <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1127. </level>
  1128. <level tiledimagewidth="1280" tiledimageheight="1280">
  1129. <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1130. </level>
  1131. <level tiledimagewidth="640" tiledimageheight="640">
  1132. <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1133. </level>
  1134. </image>
  1135. </scene>
  1136. <scene name="scene_LC720_YBMyspcdk" title="LC720_YBMyspcdk" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/thumb.jpg" lat="" lng="" heading="">
  1137. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1138. <preview url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/preview.jpg" />
  1139. <image type="CUBE" multires="true" tilesize="512">
  1140. <level tiledimagewidth="5184" tiledimageheight="5184">
  1141. <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1142. </level>
  1143. <level tiledimagewidth="2624" tiledimageheight="2624">
  1144. <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1145. </level>
  1146. <level tiledimagewidth="1280" tiledimageheight="1280">
  1147. <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1148. </level>
  1149. <level tiledimagewidth="640" tiledimageheight="640">
  1150. <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1151. </level>
  1152. </image>
  1153. </scene>
  1154. <scene name="scene_LC720_ILxo1fqPQ" title="LC720_ILxo1fqPQ" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/thumb.jpg" lat="" lng="" heading="">
  1155. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1156. <preview url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/preview.jpg" />
  1157. <image type="CUBE" multires="true" tilesize="512">
  1158. <level tiledimagewidth="5184" tiledimageheight="5184">
  1159. <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1160. </level>
  1161. <level tiledimagewidth="2624" tiledimageheight="2624">
  1162. <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1163. </level>
  1164. <level tiledimagewidth="1280" tiledimageheight="1280">
  1165. <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1166. </level>
  1167. <level tiledimagewidth="640" tiledimageheight="640">
  1168. <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1169. </level>
  1170. </image>
  1171. </scene>
  1172. <scene name="scene_LC720_G9XjaRK06" title="LC720_G9XjaRK06" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/thumb.jpg" lat="" lng="" heading="">
  1173. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1174. <preview url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/preview.jpg" />
  1175. <image type="CUBE" multires="true" tilesize="512">
  1176. <level tiledimagewidth="5184" tiledimageheight="5184">
  1177. <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1178. </level>
  1179. <level tiledimagewidth="2624" tiledimageheight="2624">
  1180. <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1181. </level>
  1182. <level tiledimagewidth="1280" tiledimageheight="1280">
  1183. <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1184. </level>
  1185. <level tiledimagewidth="640" tiledimageheight="640">
  1186. <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1187. </level>
  1188. </image>
  1189. </scene>
  1190. <scene name="scene_LC720_ExB1CiVYl" title="LC720_ExB1CiVYl" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/thumb.jpg" lat="" lng="" heading="">
  1191. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1192. <preview url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/preview.jpg" />
  1193. <image type="CUBE" multires="true" tilesize="512">
  1194. <level tiledimagewidth="5184" tiledimageheight="5184">
  1195. <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1196. </level>
  1197. <level tiledimagewidth="2624" tiledimageheight="2624">
  1198. <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1199. </level>
  1200. <level tiledimagewidth="1280" tiledimageheight="1280">
  1201. <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1202. </level>
  1203. <level tiledimagewidth="640" tiledimageheight="640">
  1204. <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1205. </level>
  1206. </image>
  1207. </scene>
  1208. <scene name="scene_LC720_Rn9nntTwD" title="LC720_Rn9nntTwD" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/thumb.jpg" lat="" lng="" heading="">
  1209. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1210. <preview url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/preview.jpg" />
  1211. <image type="CUBE" multires="true" tilesize="512">
  1212. <level tiledimagewidth="5184" tiledimageheight="5184">
  1213. <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1214. </level>
  1215. <level tiledimagewidth="2624" tiledimageheight="2624">
  1216. <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1217. </level>
  1218. <level tiledimagewidth="1280" tiledimageheight="1280">
  1219. <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1220. </level>
  1221. <level tiledimagewidth="640" tiledimageheight="640">
  1222. <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1223. </level>
  1224. </image>
  1225. </scene>
  1226. <scene name="scene_LC720_KIN2V8GQD" title="LC720_KIN2V8GQD" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/thumb.jpg" lat="" lng="" heading="">
  1227. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1228. <preview url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/preview.jpg" />
  1229. <image type="CUBE" multires="true" tilesize="512">
  1230. <level tiledimagewidth="5184" tiledimageheight="5184">
  1231. <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1232. </level>
  1233. <level tiledimagewidth="2624" tiledimageheight="2624">
  1234. <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1235. </level>
  1236. <level tiledimagewidth="1280" tiledimageheight="1280">
  1237. <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1238. </level>
  1239. <level tiledimagewidth="640" tiledimageheight="640">
  1240. <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1241. </level>
  1242. </image>
  1243. </scene>
  1244. <scene name="scene_LC720_cxou9AGST" title="LC720_cxou9AGST" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/thumb.jpg" lat="" lng="" heading="">
  1245. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1246. <preview url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/preview.jpg" />
  1247. <image type="CUBE" multires="true" tilesize="512">
  1248. <level tiledimagewidth="5184" tiledimageheight="5184">
  1249. <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1250. </level>
  1251. <level tiledimagewidth="2624" tiledimageheight="2624">
  1252. <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1253. </level>
  1254. <level tiledimagewidth="1280" tiledimageheight="1280">
  1255. <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1256. </level>
  1257. <level tiledimagewidth="640" tiledimageheight="640">
  1258. <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1259. </level>
  1260. </image>
  1261. </scene>
  1262. <scene name="scene_LC720_oQjJQFji6" title="LC720_oQjJQFji6" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/thumb.jpg" lat="" lng="" heading="">
  1263. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1264. <preview url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/preview.jpg" />
  1265. <image type="CUBE" multires="true" tilesize="512">
  1266. <level tiledimagewidth="5184" tiledimageheight="5184">
  1267. <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1268. </level>
  1269. <level tiledimagewidth="2624" tiledimageheight="2624">
  1270. <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1271. </level>
  1272. <level tiledimagewidth="1280" tiledimageheight="1280">
  1273. <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1274. </level>
  1275. <level tiledimagewidth="640" tiledimageheight="640">
  1276. <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1277. </level>
  1278. </image>
  1279. </scene>
  1280. <scene name="scene_LC720_GVcaFMSIm" title="LC720_GVcaFMSIm" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/thumb.jpg" lat="" lng="" heading="">
  1281. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1282. <preview url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/preview.jpg" />
  1283. <image type="CUBE" multires="true" tilesize="512">
  1284. <level tiledimagewidth="5184" tiledimageheight="5184">
  1285. <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1286. </level>
  1287. <level tiledimagewidth="2624" tiledimageheight="2624">
  1288. <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1289. </level>
  1290. <level tiledimagewidth="1280" tiledimageheight="1280">
  1291. <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1292. </level>
  1293. <level tiledimagewidth="640" tiledimageheight="640">
  1294. <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1295. </level>
  1296. </image>
  1297. </scene>
  1298. <scene name="scene_LC720_UtaEbfy25" title="LC720_UtaEbfy25" onstart="" thumburl="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/thumb.jpg" lat="" lng="" heading="">
  1299. <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
  1300. <preview url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/preview.jpg" />
  1301. <image type="CUBE" multires="true" tilesize="512">
  1302. <level tiledimagewidth="5184" tiledimageheight="5184">
  1303. <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
  1304. </level>
  1305. <level tiledimagewidth="2624" tiledimageheight="2624">
  1306. <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
  1307. </level>
  1308. <level tiledimagewidth="1280" tiledimageheight="1280">
  1309. <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
  1310. </level>
  1311. <level tiledimagewidth="640" tiledimageheight="640">
  1312. <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
  1313. </level>
  1314. </image>
  1315. </scene>
  1316. </krpano>