123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082 |
- <krpano version="1.19" title="Virtual Tour">
- <include url="%SWFPATH%/skin/vtourskin.xml" />
- <!-- customize skin settings: maps, gyro, webvr, thumbnails, tooltips, layout, design, ... -->
- <skin_settings maps="false"
- maps_type="google"
- maps_bing_api_key=""
- maps_google_api_key=""
- maps_zoombuttons="false"
- gyro="true"
- webvr="true"
- webvr_gyro_keeplookingdirection="false"
- webvr_prev_next_hotspots="true"
- littleplanetintro="false"
- title="true"
- thumbs="true"
- thumbs_width="120" thumbs_height="80" thumbs_padding="10" thumbs_crop="0|40|240|160"
- thumbs_opened="false"
- thumbs_text="false"
- thumbs_dragging="true"
- thumbs_onhoverscrolling="false"
- thumbs_scrollbuttons="false"
- thumbs_scrollindicator="false"
- thumbs_loop="false"
- tooltips_buttons="false"
- tooltips_thumbs="false"
- tooltips_hotspots="false"
- tooltips_mapspots="false"
- deeplinking="false"
- loadscene_flags="MERGE"
- loadscene_blend="OPENBLEND(0.5, 0.0, 0.75, 0.05, linear)"
- loadscene_blend_prev="SLIDEBLEND(0.5, 180, 0.75, linear)"
- loadscene_blend_next="SLIDEBLEND(0.5, 0, 0.75, linear)"
- loadingtext="loading..."
- layout_width="100%"
- layout_maxwidth="814"
- controlbar_width="-24"
- controlbar_height="40"
- controlbar_offset="20"
- controlbar_offset_closed="-40"
- controlbar_overlap.no-fractionalscaling="10"
- controlbar_overlap.fractionalscaling="0"
- design_skin_images="vtourskin.png"
- design_bgcolor="0x2D3E50"
- design_bgalpha="0.8"
- design_bgborder="0"
- design_bgroundedge="1"
- design_bgshadow="0 4 10 0x000000 0.3"
- design_thumbborder_bgborder="3 0xFFFFFF 1.0"
- design_thumbborder_padding="2"
- design_thumbborder_bgroundedge="0"
- design_text_css="color:#FFFFFF; font-family:Arial;"
- design_text_shadow="1"
- />
- <!--
- For an alternative skin design either change the <skin_settings> values
- from above or optionally include one of the predefined designs from below.
- -->
- <!-- <include url="skin/vtourskin_design_flat_light.xml" /> -->
- <!-- <include url="skin/vtourskin_design_glass.xml" /> -->
- <!-- <include url="skin/vtourskin_design_ultra_light.xml" /> -->
- <!-- <include url="skin/vtourskin_design_117.xml" /> -->
- <!-- <include url="skin/vtourskin_design_117round.xml" /> -->
- <!-- <include url="skin/vtourskin_design_black.xml" /> -->
- <!-- startup action - load the first scene -->
- <action name="startup" autorun="onstart">
- if(startscene === null OR !scene[get(startscene)], copy(startscene,scene[0].name); );
- set(vl, get(view.vlookat));
- set(hl, get(view.hlookat));
- set(vars, calc('view.vlookat=' + vl + '&' + 'view.hlookat=' + hl));
- trace(get(vars));
- loadscene(get(startscene), get(vars), MERGE);
- if(startactions !== null, startactions() );
- </action>
-
-
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_k7Pxrby4X/panos/LC720_k7Pxrby4X.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_Omej5TknN/panos/LC720_Omej5TknN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_hDq1alMFN/panos/LC720_hDq1alMFN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_A0QtwCq2z/panos/LC720_A0QtwCq2z.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_3c4hhDiqi/panos/LC720_3c4hhDiqi.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_dt3sHmU6o/panos/LC720_dt3sHmU6o.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_vlQLBBVTG/panos/LC720_vlQLBBVTG.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_Xst5LXC3z/panos/LC720_Xst5LXC3z.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_IcSphivdv/panos/LC720_IcSphivdv.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_O7NgjT55L/panos/LC720_O7NgjT55L.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_5B6XVhHMq/panos/LC720_5B6XVhHMq.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_0igV3nHKX/panos/LC720_0igV3nHKX.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_a9XnETz3k/panos/LC720_a9XnETz3k.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ho3Nbu5OP/panos/LC720_ho3Nbu5OP.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_FJGw28k9B/panos/LC720_FJGw28k9B.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_HaRtliJM3/panos/LC720_HaRtliJM3.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_DEuYnfBsN/panos/LC720_DEuYnfBsN.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_OTDOCzDCL/panos/LC720_OTDOCzDCL.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_Z1SIQQ8fu/panos/LC720_Z1SIQQ8fu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_BhrNaLk8Y/panos/LC720_BhrNaLk8Y.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_HMZFJo228/panos/LC720_HMZFJo228.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_XplUziNn8/panos/LC720_XplUziNn8.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_BEPETi52W/panos/LC720_BEPETi52W.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_nzVR4b849/panos/LC720_nzVR4b849.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_HeFPKGner/panos/LC720_HeFPKGner.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_Nm6KFDHYK/panos/LC720_Nm6KFDHYK.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_aGOB0nwZT/panos/LC720_aGOB0nwZT.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_fkWCpMyQy/panos/LC720_fkWCpMyQy.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_PdhHt3nXd/panos/LC720_PdhHt3nXd.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ppfiNQSS0/panos/LC720_ppfiNQSS0.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_5mBTsiaPY/panos/LC720_5mBTsiaPY.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_XVIR6wFjP/panos/LC720_XVIR6wFjP.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_r0l1EUw20/panos/LC720_r0l1EUw20.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_sf1F9Ez3X/panos/LC720_sf1F9Ez3X.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_arVjj5Z34/panos/LC720_arVjj5Z34.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_lAUSDZkCu/panos/LC720_lAUSDZkCu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_o4oOm7j3p/panos/LC720_o4oOm7j3p.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_XUpZCRFoE/panos/LC720_XUpZCRFoE.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_fIIMRz38q/panos/LC720_fIIMRz38q.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_esKwTbCvm/panos/LC720_esKwTbCvm.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_s3EPCZ7W1/panos/LC720_s3EPCZ7W1.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_CCw6fuqdU/panos/LC720_CCw6fuqdU.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_zqYuabIAd/panos/LC720_zqYuabIAd.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_nOYT6bLD3/panos/LC720_nOYT6bLD3.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_RgFv6tzFe/panos/LC720_RgFv6tzFe.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_oweZ7Pmao/panos/LC720_oweZ7Pmao.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ZFLkkx57h/panos/LC720_ZFLkkx57h.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_kCX2Zvs8k/panos/LC720_kCX2Zvs8k.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_aFp34IfL6/panos/LC720_aFp34IfL6.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_GQPmmjBFn/panos/LC720_GQPmmjBFn.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ykAdWYJVl/panos/LC720_ykAdWYJVl.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_K37J1GDpT/panos/LC720_K37J1GDpT.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_r5y180R4M/panos/LC720_r5y180R4M.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_jyHF5dLNg/panos/LC720_jyHF5dLNg.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_87PZRacrR/panos/LC720_87PZRacrR.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_L0DgYkG5b/panos/LC720_L0DgYkG5b.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_tP29sauGi/panos/LC720_tP29sauGi.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_2yY3eqGBx/panos/LC720_2yY3eqGBx.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_q6nUoDVXu/panos/LC720_q6nUoDVXu.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_YBMyspcdk/panos/LC720_YBMyspcdk.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ILxo1fqPQ/panos/LC720_ILxo1fqPQ.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_G9XjaRK06/panos/LC720_G9XjaRK06.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_ExB1CiVYl/panos/LC720_ExB1CiVYl.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_Rn9nntTwD/panos/LC720_Rn9nntTwD.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_KIN2V8GQD/panos/LC720_KIN2V8GQD.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_cxou9AGST/panos/LC720_cxou9AGST.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_oQjJQFji6/panos/LC720_oQjJQFji6.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_GVcaFMSIm/panos/LC720_GVcaFMSIm.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
-
- <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="">
- <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" />
- <preview url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/preview.jpg" />
- <image type="CUBE" multires="true" tilesize="512">
- <level tiledimagewidth="5184" tiledimageheight="5184">
- <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l4/%v/l4_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="2624" tiledimageheight="2624">
- <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l3/%v/l3_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="1280" tiledimageheight="1280">
- <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l2/%v/l2_%s_%v_%h.jpg" />
- </level>
- <level tiledimagewidth="640" tiledimageheight="640">
- <cube url="http://192.168.20.245:8007/pano/LC720_UtaEbfy25/panos/LC720_UtaEbfy25.tiles/%s/l1/%v/l1_%s_%v_%h.jpg" />
- </level>
- </image>
- </scene>
- </krpano>
|