├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── webpower.iml └── workspace.xml ├── 404.html ├── CNAME ├── LICENSE.txt ├── README.md ├── _config.yml ├── browserconfig.xml ├── css ├── DrawHelper.css ├── index.css ├── main.css ├── normalize.css ├── style.css └── topMenu.css ├── doc ├── TOC.md ├── css.md ├── extend.md ├── faq.md ├── html.md ├── js.md ├── misc.md └── usage.md ├── favicon.ico ├── humans.txt ├── icon.png ├── img ├── .gitignore ├── Air.gltf ├── V.glb ├── addimg.png ├── bar.png ├── bian.jpg ├── caoc.png ├── chartCon.png ├── charts.png ├── chartsmenu.png ├── closeblack.png ├── delete.png ├── dianta.glb ├── down.png ├── dragIcon.png ├── dragIconLight.png ├── eleLoad.png ├── elefac.png ├── elegeo.png ├── eleload1.png ├── eyeClose.png ├── eyeOpen.png ├── feng.jpg ├── fengche.glb ├── fengche.gltf ├── guang.jpg ├── he.jpg ├── homePage.png ├── huo.jpg ├── hydropower.png ├── hydropower_img.png ├── imgSearch.png ├── layer.png ├── leftback.png ├── line.png ├── locationImg.png ├── miniChartBtn.png ├── miniChartClose.png ├── move2Top.png ├── move2lower.png ├── pie.png ├── ponsume.png ├── rightback.png ├── scatter.png ├── search.png ├── searchConfig.png ├── selall.png ├── selectk.png ├── selmorerect.png ├── selrect.png ├── showAll.png ├── showData.png ├── shu.jpg ├── shui.jpg ├── solarpower.png ├── solarpower_img.png ├── tatatat.glb ├── thermalpower.png ├── thermalpower_img.png ├── tower.glb ├── tower.png ├── tower_img.png ├── tower_white.glb ├── transform_img.png ├── transformer.png ├── tuceng.png ├── up.png ├── upTop.png ├── vertical01.glb ├── windpower.png ├── windpower_img.png ├── yearData.png ├── ziqi.jpg ├── ziqi1.jpg ├── ziqi2.jpg ├── ziqi3.jpg ├── ziqi4.jpg └── ziqi5.jpg ├── index.html ├── js ├── 110100.json ├── Cesium │ ├── Assets │ │ ├── IAU2006_XYS │ │ │ ├── IAU2006_XYS_0.json │ │ │ ├── IAU2006_XYS_1.json │ │ │ ├── IAU2006_XYS_10.json │ │ │ ├── IAU2006_XYS_11.json │ │ │ ├── IAU2006_XYS_12.json │ │ │ ├── IAU2006_XYS_13.json │ │ │ ├── IAU2006_XYS_14.json │ │ │ ├── IAU2006_XYS_15.json │ │ │ ├── IAU2006_XYS_16.json │ │ │ ├── IAU2006_XYS_17.json │ │ │ ├── IAU2006_XYS_18.json │ │ │ ├── IAU2006_XYS_19.json │ │ │ ├── IAU2006_XYS_2.json │ │ │ ├── IAU2006_XYS_20.json │ │ │ ├── IAU2006_XYS_21.json │ │ │ ├── IAU2006_XYS_22.json │ │ │ ├── IAU2006_XYS_23.json │ │ │ ├── IAU2006_XYS_24.json │ │ │ ├── IAU2006_XYS_25.json │ │ │ ├── IAU2006_XYS_26.json │ │ │ ├── IAU2006_XYS_27.json │ │ │ ├── IAU2006_XYS_3.json │ │ │ ├── IAU2006_XYS_4.json │ │ │ ├── IAU2006_XYS_5.json │ │ │ ├── IAU2006_XYS_6.json │ │ │ ├── IAU2006_XYS_7.json │ │ │ ├── IAU2006_XYS_8.json │ │ │ └── IAU2006_XYS_9.json │ │ ├── Textures │ │ │ ├── NaturalEarthII │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ │ └── 0.jpg │ │ │ │ │ └── 1 │ │ │ │ │ │ └── 0.jpg │ │ │ │ ├── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ └── 1.jpg │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ └── 1.jpg │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ └── 1.jpg │ │ │ │ │ └── 3 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ └── 1.jpg │ │ │ │ ├── 2 │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 3 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 4 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 5 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ ├── 6 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ │ └── 7 │ │ │ │ │ │ ├── 0.jpg │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ └── 3.jpg │ │ │ │ └── tilemapresource.xml │ │ │ ├── SkyBox │ │ │ │ ├── tycho2t3_80_mx.jpg │ │ │ │ ├── tycho2t3_80_my.jpg │ │ │ │ ├── tycho2t3_80_mz.jpg │ │ │ │ ├── tycho2t3_80_px.jpg │ │ │ │ ├── tycho2t3_80_py.jpg │ │ │ │ └── tycho2t3_80_pz.jpg │ │ │ ├── maki │ │ │ │ ├── airfield.png │ │ │ │ ├── airport.png │ │ │ │ ├── alcohol-shop.png │ │ │ │ ├── america-football.png │ │ │ │ ├── art-gallery.png │ │ │ │ ├── bakery.png │ │ │ │ ├── bank.png │ │ │ │ ├── bar.png │ │ │ │ ├── baseball.png │ │ │ │ ├── basketball.png │ │ │ │ ├── beer.png │ │ │ │ ├── bicycle.png │ │ │ │ ├── building.png │ │ │ │ ├── bus.png │ │ │ │ ├── cafe.png │ │ │ │ ├── camera.png │ │ │ │ ├── campsite.png │ │ │ │ ├── car.png │ │ │ │ ├── cemetery.png │ │ │ │ ├── cesium.png │ │ │ │ ├── chemist.png │ │ │ │ ├── cinema.png │ │ │ │ ├── circle-stroked.png │ │ │ │ ├── circle.png │ │ │ │ ├── city.png │ │ │ │ ├── clothing-store.png │ │ │ │ ├── college.png │ │ │ │ ├── commercial.png │ │ │ │ ├── cricket.png │ │ │ │ ├── cross.png │ │ │ │ ├── dam.png │ │ │ │ ├── danger.png │ │ │ │ ├── disability.png │ │ │ │ ├── dog-park.png │ │ │ │ ├── embassy.png │ │ │ │ ├── emergency-telephone.png │ │ │ │ ├── entrance.png │ │ │ │ ├── farm.png │ │ │ │ ├── fast-food.png │ │ │ │ ├── ferry.png │ │ │ │ ├── fire-station.png │ │ │ │ ├── fuel.png │ │ │ │ ├── garden.png │ │ │ │ ├── gift.png │ │ │ │ ├── golf.png │ │ │ │ ├── grocery.png │ │ │ │ ├── hairdresser.png │ │ │ │ ├── harbor.png │ │ │ │ ├── heart.png │ │ │ │ ├── heliport.png │ │ │ │ ├── hospital.png │ │ │ │ ├── ice-cream.png │ │ │ │ ├── industrial.png │ │ │ │ ├── land-use.png │ │ │ │ ├── laundry.png │ │ │ │ ├── library.png │ │ │ │ ├── lighthouse.png │ │ │ │ ├── lodging.png │ │ │ │ ├── logging.png │ │ │ │ ├── london-underground.png │ │ │ │ ├── marker-stroked.png │ │ │ │ ├── marker.png │ │ │ │ ├── minefield.png │ │ │ │ ├── mobilephone.png │ │ │ │ ├── monument.png │ │ │ │ ├── museum.png │ │ │ │ ├── music.png │ │ │ │ ├── oil-well.png │ │ │ │ ├── park.png │ │ │ │ ├── park2.png │ │ │ │ ├── parking-garage.png │ │ │ │ ├── parking.png │ │ │ │ ├── pharmacy.png │ │ │ │ ├── pitch.png │ │ │ │ ├── place-of-worship.png │ │ │ │ ├── playground.png │ │ │ │ ├── police.png │ │ │ │ ├── polling-place.png │ │ │ │ ├── post.png │ │ │ │ ├── prison.png │ │ │ │ ├── rail-above.png │ │ │ │ ├── rail-light.png │ │ │ │ ├── rail-metro.png │ │ │ │ ├── rail-underground.png │ │ │ │ ├── rail.png │ │ │ │ ├── religious-christian.png │ │ │ │ ├── religious-jewish.png │ │ │ │ ├── religious-muslim.png │ │ │ │ ├── restaurant.png │ │ │ │ ├── roadblock.png │ │ │ │ ├── rocket.png │ │ │ │ ├── school.png │ │ │ │ ├── scooter.png │ │ │ │ ├── shop.png │ │ │ │ ├── skiing.png │ │ │ │ ├── slaughterhouse.png │ │ │ │ ├── soccer.png │ │ │ │ ├── square-stroked.png │ │ │ │ ├── square.png │ │ │ │ ├── star-stroked.png │ │ │ │ ├── star.png │ │ │ │ ├── suitcase.png │ │ │ │ ├── swimming.png │ │ │ │ ├── telephone.png │ │ │ │ ├── tennis.png │ │ │ │ ├── theatre.png │ │ │ │ ├── toilets.png │ │ │ │ ├── town-hall.png │ │ │ │ ├── town.png │ │ │ │ ├── triangle-stroked.png │ │ │ │ ├── triangle.png │ │ │ │ ├── village.png │ │ │ │ ├── warehouse.png │ │ │ │ ├── waste-basket.png │ │ │ │ ├── water.png │ │ │ │ ├── wetland.png │ │ │ │ └── zoo.png │ │ │ ├── moonSmall.jpg │ │ │ ├── pin.svg │ │ │ ├── waterNormals.jpg │ │ │ └── waterNormalsSmall.jpg │ │ └── approximateTerrainHeights.json │ ├── Cesium.js │ ├── ThirdParty │ │ └── Workers │ │ │ ├── deflate.js │ │ │ └── inflate.js │ ├── Widgets │ │ ├── Animation │ │ │ ├── Animation.css │ │ │ └── lighter.css │ │ ├── BaseLayerPicker │ │ │ ├── BaseLayerPicker.css │ │ │ └── lighter.css │ │ ├── Cesium3DTilesInspector │ │ │ └── Cesium3DTilesInspector.css │ │ ├── CesiumInspector │ │ │ └── CesiumInspector.css │ │ ├── CesiumWidget │ │ │ ├── CesiumWidget.css │ │ │ └── lighter.css │ │ ├── FullscreenButton │ │ │ └── FullscreenButton.css │ │ ├── Geocoder │ │ │ ├── Geocoder.css │ │ │ └── lighter.css │ │ ├── Images │ │ │ ├── ImageryProviders │ │ │ │ ├── bingAerial.png │ │ │ │ ├── bingAerialLabels.png │ │ │ │ ├── bingRoads.png │ │ │ │ ├── blackMarble.png │ │ │ │ ├── esriNationalGeographic.png │ │ │ │ ├── esriWorldImagery.png │ │ │ │ ├── esriWorldStreetMap.png │ │ │ │ ├── mapQuestOpenStreetMap.png │ │ │ │ ├── mapboxSatellite.png │ │ │ │ ├── mapboxStreets.png │ │ │ │ ├── mapboxTerrain.png │ │ │ │ ├── naturalEarthII.png │ │ │ │ ├── openStreetMap.png │ │ │ │ ├── stamenToner.png │ │ │ │ └── stamenWatercolor.png │ │ │ ├── NavigationHelp │ │ │ │ ├── Mouse.svg │ │ │ │ ├── MouseLeft.svg │ │ │ │ ├── MouseMiddle.svg │ │ │ │ ├── MouseRight.svg │ │ │ │ ├── Touch.svg │ │ │ │ ├── TouchDrag.svg │ │ │ │ ├── TouchRotate.svg │ │ │ │ ├── TouchTilt.svg │ │ │ │ └── TouchZoom.svg │ │ │ ├── TerrainProviders │ │ │ │ ├── Ellipsoid.png │ │ │ │ └── STK.png │ │ │ ├── TimelineIcons.png │ │ │ └── info-loading.gif │ │ ├── InfoBox │ │ │ ├── InfoBox.css │ │ │ └── InfoBoxDescription.css │ │ ├── NavigationHelpButton │ │ │ ├── NavigationHelpButton.css │ │ │ └── lighter.css │ │ ├── PerformanceWatchdog │ │ │ └── PerformanceWatchdog.css │ │ ├── ProjectionPicker │ │ │ └── ProjectionPicker.css │ │ ├── SceneModePicker │ │ │ └── SceneModePicker.css │ │ ├── SelectionIndicator │ │ │ └── SelectionIndicator.css │ │ ├── Timeline │ │ │ ├── Timeline.css │ │ │ └── lighter.css │ │ ├── VRButton │ │ │ └── VRButton.css │ │ ├── Viewer │ │ │ └── Viewer.css │ │ ├── lighter.css │ │ ├── lighterShared.css │ │ ├── shared.css │ │ └── widgets.css │ └── Workers │ │ ├── cesiumWorkerBootstrapper.js │ │ ├── combineGeometry.js │ │ ├── createBoxGeometry.js │ │ ├── createBoxOutlineGeometry.js │ │ ├── createCircleGeometry.js │ │ ├── createCircleOutlineGeometry.js │ │ ├── createCorridorGeometry.js │ │ ├── createCorridorOutlineGeometry.js │ │ ├── createCylinderGeometry.js │ │ ├── createCylinderOutlineGeometry.js │ │ ├── createEllipseGeometry.js │ │ ├── createEllipseOutlineGeometry.js │ │ ├── createEllipsoidGeometry.js │ │ ├── createEllipsoidOutlineGeometry.js │ │ ├── createFrustumGeometry.js │ │ ├── createFrustumOutlineGeometry.js │ │ ├── createGeometry.js │ │ ├── createPolygonGeometry.js │ │ ├── createPolygonOutlineGeometry.js │ │ ├── createPolylineGeometry.js │ │ ├── createPolylineVolumeGeometry.js │ │ ├── createPolylineVolumeOutlineGeometry.js │ │ ├── createRectangleGeometry.js │ │ ├── createRectangleOutlineGeometry.js │ │ ├── createSimplePolylineGeometry.js │ │ ├── createSphereGeometry.js │ │ ├── createSphereOutlineGeometry.js │ │ ├── createVerticesFromGoogleEarthEnterpriseBuffer.js │ │ ├── createVerticesFromHeightmap.js │ │ ├── createVerticesFromQuantizedTerrainMesh.js │ │ ├── createWallGeometry.js │ │ ├── createWallOutlineGeometry.js │ │ ├── decodeGoogleEarthEnterprisePacket.js │ │ ├── transcodeCRNToDXT.js │ │ ├── transferTypedArrayTest.js │ │ └── upsampleQuantizedTerrainMesh.js ├── autoWindows.js ├── charts.js ├── clearAll.js ├── dataShow.js ├── echarts.js ├── eleoc.js ├── globle.js ├── inforwindows.js ├── initBar.js ├── initLine.js ├── initPie.js ├── initScatter.js ├── jquery.min.js ├── layercon.js ├── main.js ├── markup.js ├── moveDiv.js ├── plugins.js ├── polygonK.js ├── powerRectangleWorkers.js ├── rectangleK.js ├── rectangleT.js ├── showpng.js └── vendor │ ├── jquery-3.3.1.min.js │ └── modernizr-3.6.0.min.js ├── json ├── 123 ├── config.json ├── config.json.bak ├── consumofenergy.json ├── dayofpower.json ├── ecofpower.json ├── elescale.json ├── json ├── mapconfig.json ├── mytest.json ├── pdate.json ├── perpower.json ├── powerIdentification.json ├── powerSample.json ├── powercount.json ├── powerofprovince.json ├── province.json └── province_data.json ├── robots.txt ├── site.webmanifest ├── tile-wide.png └── tile.png /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_size = 2 8 | indent_style = space 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ## GITATTRIBUTES FOR WEB PROJECTS 2 | # 3 | # These settings are for any web project. 4 | # 5 | # Details per file setting: 6 | # text These files should be normalized (i.e. convert CRLF to LF). 7 | # binary These files are binary and should be left untouched. 8 | # 9 | # Note that binary is a macro for -text -diff. 10 | ###################################################################### 11 | 12 | ## AUTO-DETECT 13 | ## Handle line endings automatically for files detected as 14 | ## text and leave all files detected as binary untouched. 15 | ## This will handle all files NOT defined below. 16 | * text=auto 17 | 18 | ## SOURCE CODE 19 | *.bat text eol=crlf 20 | *.coffee text 21 | *.css text 22 | *.htm text 23 | *.html text 24 | *.inc text 25 | *.ini text 26 | *.js text 27 | *.json text 28 | *.jsx text 29 | *.less text 30 | *.od text 31 | *.onlydata text 32 | *.php text 33 | *.pl text 34 | *.py text 35 | *.rb text 36 | *.sass text 37 | *.scm text 38 | *.scss text 39 | *.sh text eol=lf 40 | *.sql text 41 | *.styl text 42 | *.tag text 43 | *.ts text 44 | *.tsx text 45 | *.xml text 46 | *.xhtml text 47 | 48 | ## DOCKER 49 | *.dockerignore text 50 | Dockerfile text 51 | 52 | ## DOCUMENTATION 53 | *.markdown text 54 | *.md text 55 | *.mdwn text 56 | *.mdown text 57 | *.mkd text 58 | *.mkdn text 59 | *.mdtxt text 60 | *.mdtext text 61 | *.txt text 62 | AUTHORS text 63 | CHANGELOG text 64 | CHANGES text 65 | CONTRIBUTING text 66 | COPYING text 67 | copyright text 68 | *COPYRIGHT* text 69 | INSTALL text 70 | license text 71 | LICENSE text 72 | NEWS text 73 | readme text 74 | *README* text 75 | TODO text 76 | 77 | ## TEMPLATES 78 | *.dot text 79 | *.ejs text 80 | *.haml text 81 | *.handlebars text 82 | *.hbs text 83 | *.hbt text 84 | *.jade text 85 | *.latte text 86 | *.mustache text 87 | *.njk text 88 | *.phtml text 89 | *.tmpl text 90 | *.tpl text 91 | *.twig text 92 | 93 | ## LINTERS 94 | .babelrc text 95 | .csslintrc text 96 | .eslintrc text 97 | .htmlhintrc text 98 | .jscsrc text 99 | .jshintrc text 100 | .jshintignore text 101 | .prettierrc text 102 | .stylelintrc text 103 | 104 | ## CONFIGS 105 | *.bowerrc text 106 | *.cnf text 107 | *.conf text 108 | *.config text 109 | .browserslistrc text 110 | .editorconfig text 111 | .gitattributes text 112 | .gitconfig text 113 | .gitignore text 114 | .htaccess text 115 | *.npmignore text 116 | *.yaml text 117 | *.yml text 118 | browserslist text 119 | Makefile text 120 | makefile text 121 | 122 | ## HEROKU 123 | Procfile text 124 | .slugignore text 125 | 126 | ## GRAPHICS 127 | *.ai binary 128 | *.bmp binary 129 | *.eps binary 130 | *.gif binary 131 | *.ico binary 132 | *.jng binary 133 | *.jp2 binary 134 | *.jpg binary 135 | *.jpeg binary 136 | *.jpx binary 137 | *.jxr binary 138 | *.pdf binary 139 | *.png binary 140 | *.psb binary 141 | *.psd binary 142 | *.svg text 143 | *.svgz binary 144 | *.tif binary 145 | *.tiff binary 146 | *.wbmp binary 147 | *.webp binary 148 | 149 | ## AUDIO 150 | *.kar binary 151 | *.m4a binary 152 | *.mid binary 153 | *.midi binary 154 | *.mp3 binary 155 | *.ogg binary 156 | *.ra binary 157 | 158 | ## VIDEO 159 | *.3gpp binary 160 | *.3gp binary 161 | *.as binary 162 | *.asf binary 163 | *.asx binary 164 | *.fla binary 165 | *.flv binary 166 | *.m4v binary 167 | *.mng binary 168 | *.mov binary 169 | *.mp4 binary 170 | *.mpeg binary 171 | *.mpg binary 172 | *.ogv binary 173 | *.swc binary 174 | *.swf binary 175 | *.webm binary 176 | 177 | ## ARCHIVES 178 | *.7z binary 179 | *.gz binary 180 | *.jar binary 181 | *.rar binary 182 | *.tar binary 183 | *.zip binary 184 | 185 | ## FONTS 186 | *.ttf binary 187 | *.eot binary 188 | *.otf binary 189 | *.woff binary 190 | *.woff2 binary 191 | 192 | ## EXECUTABLES 193 | *.exe binary 194 | *.pyc binary 195 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Include your project-specific ignores in this file 2 | # Read about how to use .gitignore: https://help.github.com/articles/ignoring-files 3 | # Useful .gitignore templates: https://github.com/github/gitignore 4 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/webpower.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Page Not Found 6 | 7 | 54 | 55 | 56 |

Page Not Found

57 |

Sorry, but the page you were trying to view does not exist.

58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | webpower.sunyunzeng.com -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) HTML5 Boilerplate 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 7 | of the Software, and to permit persons to whom the Software is furnished to do 8 | so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## webpower edit by SYZ 2 | view in http://webpower.sunyunzeng.com 3 | 4 | # 介绍 5 | 6 | 提供了一个地理信息全球展示框架。 7 | 8 | # 功能 9 | 10 | 1. 全球WMS/WMTS图层管理(图层移动、透明度调节、图层删除) 11 | 2. 数据图表统计分析 12 | 3. 视野管理 13 | 4. 图像检索 14 | 5. 三维模型可视 15 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /css/DrawHelper.css: -------------------------------------------------------------------------------- 1 | /* 2 | initial twipsy code taken from bootstrap 3 | */ 4 | .twipsy { 5 | display: block; 6 | position: absolute; 7 | visibility: visible; 8 | max-width: 200px; 9 | min-width: 100px; 10 | padding: 5px; 11 | font-size: 11px; 12 | z-index: 1000; 13 | opacity: 0.8; 14 | -khtml-opacity: 0.8; 15 | -moz-opacity: 0.8; 16 | filter: alpha(opacity=80); 17 | } 18 | .twipsy.left .twipsy-arrow { 19 | top: 50%; 20 | right: 0; 21 | margin-top: -5px; 22 | border-top: 5px solid transparent; 23 | border-bottom: 5px solid transparent; 24 | border-left: 5px solid #000000; 25 | } 26 | .twipsy.right .twipsy-arrow { 27 | top: 50%; 28 | left: 0; 29 | margin-top: -5px; 30 | border-top: 5px solid transparent; 31 | border-bottom: 5px solid transparent; 32 | border-right: 5px solid #000000; 33 | } 34 | .twipsy-inner { 35 | padding: 3px 8px; 36 | background-color: #000000; 37 | color: white; 38 | text-align: center; 39 | max-width: 200px; 40 | text-decoration: none; 41 | -webkit-border-radius: 4px; 42 | -moz-border-radius: 4px; 43 | border-radius: 4px; 44 | } 45 | .twipsy-arrow { 46 | position: absolute; 47 | width: 0; 48 | height: 0; 49 | } 50 | 51 | /* 52 | css rules for the draw helper components 53 | */ 54 | 55 | 56 | .toolbar { 57 | position: absolute; 58 | top: 0; 59 | left: 400px; 60 | z-index: 40; 61 | background: rgba(80,80,80,0.8); 62 | } 63 | 64 | .toolbar > .button { 65 | border: 1px solid #eee; 66 | cursor: pointer; 67 | } 68 | 69 | .toolbar > .button:hover { 70 | background: #595959; 71 | } 72 | 73 | #rectBox { 74 | position: absolute; 75 | z-index: 40; 76 | left: 94px; 77 | top: 27px; 78 | background: transparent; 79 | } 80 | 81 | .rectBox > .button { 82 | cursor: pointer; 83 | } 84 | 85 | .rectBox > .button:hover { 86 | background: #595959; 87 | } 88 | 89 | #polygonBox { 90 | position: absolute; 91 | z-index: 40; 92 | left: 180px; 93 | top: 27px; 94 | margin: 0; 95 | padding: 0; 96 | background: transparent; 97 | } 98 | .polygonBox > .button { 99 | cursor: pointer; 100 | } 101 | .polygonBox > .button:hover { 102 | background: #595959; 103 | } 104 | 105 | 106 | 107 | /* 108 | css rules for the infowindow 109 | */ 110 | 111 | .infoWindow { 112 | position: absolute; 113 | min-width: 100px; 114 | max-width: 300px; 115 | } 116 | .infoWindow #frame { 117 | padding: 10px; 118 | border: 1px solid black; 119 | background: white; 120 | } 121 | .infoWindow #close { 122 | float: right; 123 | margin: 5px 2px; 124 | font-size: small; 125 | color: gray; 126 | cursor: pointer; 127 | } 128 | .infoWindow #arrow { 129 | position: absolute; 130 | bottom: -8px; 131 | left: 50%; 132 | margin-left: -10px; 133 | border-right: 10px solid transparent; 134 | border-left: 10px solid transparent; 135 | border-top: 10px solid white; 136 | } 137 | 138 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; 4 | } 5 | 6 | a { 7 | color: #00B7FF; 8 | } 9 | -------------------------------------------------------------------------------- /css/topMenu.css: -------------------------------------------------------------------------------- 1 | 2 | html, 3 | body { 4 | font-family: 'Arial', sans-serif; 5 | color: #333333; 6 | line-height: 16px; 7 | } 8 | 9 | /* Text */ 10 | 11 | a:link { 12 | text-decoration: none; 13 | } 14 | 15 | body { 16 | font-size: 0.875em; 17 | line-height: 1em; 18 | } 19 | /* Block-level */ 20 | 21 | /* Layout */ 22 | html { 23 | -webkit-text-size-adjust: none; 24 | overflow-y: scroll; 25 | overflow-x: hidden; 26 | } 27 | 28 | .ie7 img { 29 | -ms-interpolation-mode: bicubic; 30 | } 31 | 32 | .container { 33 | *zoom: 1; 34 | position: absolute; 35 | margin: 0 auto; 36 | width: 50%; 37 | height: 100%; 38 | right: 50px; 39 | top:0; 40 | } 41 | .container:before, 42 | .container:after { 43 | content: ""; 44 | display: table; 45 | } 46 | .container:after { 47 | clear: both; 48 | } 49 | 50 | 51 | 52 | /* All */ 53 | .nav { 54 | margin-bottom: 48px; 55 | 56 | } 57 | .nav ul { 58 | *zoom: 1; 59 | list-style: none; 60 | margin: 0; 61 | padding: 0; 62 | background: rgba(60,60,60,0.8); 63 | float: right; 64 | } 65 | .nav ul:before, 66 | .nav ul:after { 67 | content: ""; 68 | display: table; 69 | } 70 | .nav ul:after { 71 | clear: both; 72 | } 73 | .nav ul > li { 74 | float: left; 75 | position: relative; 76 | } 77 | .nav a { 78 | display: block; 79 | padding: 10px 20px; 80 | line-height: 1.2em; 81 | color: #fff; 82 | border-left: 1px solid #595959; 83 | } 84 | .nav a:hover { 85 | text-decoration: none; 86 | background: #595959; 87 | } 88 | .nav li ul { 89 | background:rgba(60,60,60,0.8); 90 | } 91 | .nav li ul li { 92 | width: 120px; 93 | } 94 | .nav li ul a { 95 | border: none; 96 | } 97 | .nav li ul a:hover { 98 | background: #595959; 99 | } 100 | 101 | 102 | /* Slide Down 103 | ============================== */ 104 | .nav3 ul > li:hover ul li { 105 | height: 36px; 106 | } 107 | .nav3 li ul { 108 | position: absolute; 109 | left: 0; 110 | top: 36px; 111 | z-index: 100; 112 | } 113 | .nav3 li ul li { 114 | overflow: hidden; 115 | height: 0; 116 | -webkit-transition: height 200ms ease-in; 117 | -moz-transition: height 200ms ease-in; 118 | -o-transition: height 200ms ease-in; 119 | transition: height 200ms ease-in; 120 | } 121 | 122 | 123 | -------------------------------------------------------------------------------- /doc/TOC.md: -------------------------------------------------------------------------------- 1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) 2 | 3 | ## Getting started 4 | 5 | * [Usage](usage.md) — Overview of the project contents. 6 | * [FAQ](faq.md) — Frequently asked questions along with their answers. 7 | 8 | ## HTML5 Boilerplate core 9 | 10 | * [HTML](html.md) — Guide to the default HTML. 11 | * [CSS](css.md) — Guide to the default CSS. 12 | * [JavaScript](js.md) — Guide to the default JavaScript. 13 | * [Everything else](misc.md). 14 | 15 | ## Development 16 | 17 | * [Extending and customizing HTML5 Boilerplate](extend.md) — Going further 18 | with the boilerplate. 19 | 20 | ## Related projects 21 | 22 | The [H5BP organization](https://github.com/h5bp) maintains several projects 23 | that complement HTML5 Boilerplate, projects that can help you improve different 24 | aspects of your website/web app (e.g.: the performance, security, etc.). 25 | 26 | * [Server Configs](https://github.com/h5bp/server-configs) — Fast and 27 | smart configurations for web servers such as Apache and Nginx. 28 | * [Apache](https://github.com/h5bp/server-configs-apache) 29 | * [Google App Engine (GAE)](https://github.com/h5bp/server-configs-gae) 30 | * [Internet Information Services (IIS)](https://github.com/h5bp/server-configs-iis) 31 | * [lighttpd](https://github.com/h5bp/server-configs-lighttpd) 32 | * [Nginx](https://github.com/h5bp/server-configs-nginx) 33 | * [Node.js](https://github.com/h5bp/server-configs-node) 34 | * [Ant Build Script](https://github.com/h5bp/ant-build-script) — Apache 35 | Ant based build script. 36 | -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- 1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation 2 | table of contents](TOC.md) 3 | 4 | # Frequently asked questions 5 | 6 | * [Why is the Google Analytics code at the bottom? Google recommends it be 7 | placed in the ``.](#why-is-the-google-analytics-code-at-the-bottom-google-recommends-it-be-placed-in-the-head) 8 | * [How can I integrate Bootstrap with HTML5 9 | Boilerplate?](#how-can-i-integrate-bootstrap-with-html5-boilerplate) 10 | * [Do I need to upgrade my site each time a new version of HTML5 Boilerplate is 11 | released?](#do-i-need-to-upgrade-my-site-each-time-a-new-version-of-html5-boilerplate-is-released) 12 | * [Where can I get help with support 13 | questions?](#where-can-i-get-help-with-support-questions) 14 | 15 | --- 16 | 17 | ### Why is the Google Analytics code at the bottom? Google recommends it be placed in the ``. 18 | 19 | The main advantage of placing it in the `` is that you will track the 20 | user's `pageview` even if they leave the page before it has been fully loaded. 21 | 22 | Here's a handy quote from [Mathias Bynens](https://mathiasbynens.be/notes/async-analytics-snippet#comment-50) about our placement choice. 23 | >I should point out that it’s Google — not me — recommending to place this 24 | script before all other scripts in the document. The only real advantage is to 25 | catch a pageView call if your page fails to load completely (for example, if 26 | the user aborts loading, or quickly closes the page, etc.). Personally, I 27 | wouldn’t count that as a page view, so I actually prefer to place this script 28 | at the bottom, after all other scripts. This keeps all the scripts together and 29 | reinforces that scripts at the bottom are the right move. (Usually I 30 | concatenate and minify all my scripts into one .js file — the GA snippet being 31 | the suffix.) 32 | 33 | ### How can I integrate [Bootstrap](https://getbootstrap.com/) with HTML5 Boilerplate? 34 | 35 | Here's Nicolas Gallagher writing about how [HTML5 Boilerplate and Bootstrap complement each 36 | other](https://www.quora.com/Is-Bootstrap-a-complement-or-an-alternative-to-HTML5-Boilerplate-or-viceversa/answer/Nicolas-Gallagher). 37 | 38 | ### Do I need to upgrade my site each time a new version of HTML5 Boilerplate is released? 39 | 40 | No, same as you don't normally replace the foundation of a house once it 41 | was built. However, there is nothing stopping you from trying to work in the 42 | latest changes, but you'll have to assess the costs/benefits of doing so. 43 | 44 | ### Where can I get help with support questions? 45 | 46 | Please ask for help on 47 | [StackOverflow](https://stackoverflow.com/questions/tagged/html5boilerplate). 48 | -------------------------------------------------------------------------------- /doc/js.md: -------------------------------------------------------------------------------- 1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation 2 | table of contents](TOC.md) 3 | 4 | # The JavaScript 5 | 6 | Information about the default JavaScript included in the project. 7 | 8 | ## main.js 9 | 10 | This file can be used to contain or reference your site/app JavaScript code. 11 | If you're working on something more advanced you might replace this file 12 | entirely. That's cool. 13 | 14 | ## plugins.js 15 | 16 | This file can be used to contain all your plugins, such as jQuery plugins and 17 | other 3rd party scripts for a simple site. 18 | 19 | One approach is to put jQuery plugins inside of a `(function($){ ... 20 | })(jQuery);` closure to make sure they're in the jQuery namespace safety 21 | blanket. Read more about [jQuery plugin 22 | authoring](https://learn.jquery.com/plugins/#Getting_Started). 23 | 24 | By default the `plugins.js` file contains a small script to avoid `console` 25 | errors in browsers that lack a `console`. The script will make sure that, if 26 | a console method isn't available, that method will have the value of empty 27 | function, thus, preventing the browser from throwing an error. 28 | 29 | ## vendor 30 | 31 | This directory can be used to contain all 3rd party library code. 32 | 33 | Minified versions of the latest jQuery and Modernizr libraries are included by 34 | default. You may wish to create your own [custom Modernizr 35 | build with the online builder](https://www.modernizr.com/download/) or [command 36 | line tool](https://modernizr.com/docs#command-line-config). 37 | -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- 1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation 2 | table of contents](TOC.md) 3 | 4 | # Usage 5 | 6 | The most basic usage of HTML5 Boilerplate is to create a static site or simple 7 | app. Once you've downloaded or cloned the project, that process looks something 8 | like this: 9 | 10 | 1. Set up the basic structure of the site. 11 | 2. Add some content, style, and functionality. 12 | 3. Run your site locally to see how it looks. 13 | 4. Deploy your site. 14 | 15 | Cool, right? _It is_. That said, the smart defaults, baseline elements, default 16 | attribute values and various other utilities that HTML5 Boilerplate offers can 17 | serve as the foundation for whatever you're interested in building. 18 | 19 | Even the basic use-case of a simple static site can be enhanced by manipulating 20 | the code through an automated build process. Moving up in complexity HTML5 21 | Boilerplate can be integrated with whatever front-end framework, CMS or 22 | e-commerce platform you're working with. Mix-and-match to your heart's content. 23 | Use what you need (toss it in a blender if you need to) and discard the rest. 24 | HTML5 Boilerplate is a starting point, not a destination. 25 | 26 | ## Basic structure 27 | 28 | A basic HTML5 Boilerplate site initially looks something like this: 29 | 30 | ``` 31 | . 32 | ├── css 33 | │ ├── main.css 34 | │ └── normalize.css 35 | ├── doc 36 | ├── img 37 | ├── js 38 | │ ├── main.js 39 | │ ├── plugins.js 40 | │ └── vendor 41 | │ ├── jquery.min.js 42 | │ └── modernizr.min.js 43 | ├── .editorconfig 44 | ├── .htaccess 45 | ├── 404.html 46 | ├── browserconfig.xml 47 | ├── favicon.ico 48 | ├── humans.txt 49 | ├── icon.png 50 | ├── index.html 51 | ├── robots.txt 52 | ├── site.webmanifest 53 | ├── tile.png 54 | └── tile-wide.png 55 | ``` 56 | 57 | What follows is a general overview of each major part and how to use them. 58 | 59 | ### css 60 | 61 | This directory should contain all your project's CSS files. It includes some 62 | initial CSS to help get you started from a solid foundation. [About the 63 | CSS](css.md). 64 | 65 | ### doc 66 | 67 | This directory contains all the HTML5 Boilerplate documentation. You can use it 68 | as the location and basis for your own project's documentation. 69 | 70 | ### js 71 | 72 | This directory should contain all your project's JS files. Libraries, plugins, 73 | and custom code can all be included here. It includes some initial JS to help 74 | get you started. [About the JavaScript](js.md). 75 | 76 | ### .htaccess 77 | 78 | The default web server configs are for Apache. For more information, please 79 | refer to the [Apache Server Configs 80 | repository](https://github.com/h5bp/server-configs-apache). 81 | 82 | Host your site on a server other than Apache? You're likely to find the 83 | corresponding server configs project listed in our [Server Configs 84 | ](https://github.com/h5bp/server-configs/blob/master/README.md) repository. 85 | 86 | ### 404.html 87 | 88 | A helpful custom 404 to get you started. 89 | 90 | ### browserconfig.xml 91 | 92 | This file contains all settings regarding custom tiles for IE11 and Edge. 93 | 94 | For more info on this topic, please refer to 95 | [MSDN](https://msdn.microsoft.com/library/dn455106.aspx). 96 | 97 | ### .editorconfig 98 | 99 | The `.editorconfig` file is provided in order to encourage and help you and 100 | your team to maintain consistent coding styles between different 101 | editors and IDEs. [Read more about the `.editorconfig` file](misc.md#editorconfig). 102 | 103 | ### index.html 104 | 105 | This is the default HTML skeleton that should form the basis of all pages on 106 | your site. If you are using a server-side templating framework, then you will 107 | need to integrate this starting HTML with your setup. 108 | 109 | Make sure that you update the URLs for the referenced CSS and JavaScript if you 110 | modify the directory structure at all. 111 | 112 | If you are using Google Universal Analytics, make sure that you edit the 113 | corresponding snippet at the bottom to include your analytics ID. 114 | 115 | ### humans.txt 116 | 117 | Edit this file to include the team that worked on your site/app, and the 118 | technology powering it. 119 | 120 | ### robots.txt 121 | 122 | Edit this file to include any pages you need hidden from search engines. 123 | 124 | ### Icons 125 | 126 | Replace the default `favicon.ico`, `tile.png`, `tile-wide.png` and Apple 127 | Touch Icon with your own. 128 | 129 | If you want to use different Apple Touch Icons for different resolutions please 130 | refer to the [according documentation](extend.md#apple-touch-icons). 131 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/favicon.ico -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | -- -- 7 | 8 | # THANKS 9 | 10 | 11 | 12 | # TECHNOLOGY COLOPHON 13 | 14 | CSS3, HTML5 15 | Apache Server Configs, jQuery, Modernizr, Normalize.css 16 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/icon.png -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/.gitignore -------------------------------------------------------------------------------- /img/V.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/V.glb -------------------------------------------------------------------------------- /img/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/addimg.png -------------------------------------------------------------------------------- /img/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/bar.png -------------------------------------------------------------------------------- /img/bian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/bian.jpg -------------------------------------------------------------------------------- /img/caoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/caoc.png -------------------------------------------------------------------------------- /img/chartCon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/chartCon.png -------------------------------------------------------------------------------- /img/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/charts.png -------------------------------------------------------------------------------- /img/chartsmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/chartsmenu.png -------------------------------------------------------------------------------- /img/closeblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/closeblack.png -------------------------------------------------------------------------------- /img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/delete.png -------------------------------------------------------------------------------- /img/dianta.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/dianta.glb -------------------------------------------------------------------------------- /img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/down.png -------------------------------------------------------------------------------- /img/dragIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/dragIcon.png -------------------------------------------------------------------------------- /img/dragIconLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/dragIconLight.png -------------------------------------------------------------------------------- /img/eleLoad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/eleLoad.png -------------------------------------------------------------------------------- /img/elefac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/elefac.png -------------------------------------------------------------------------------- /img/elegeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/elegeo.png -------------------------------------------------------------------------------- /img/eleload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/eleload1.png -------------------------------------------------------------------------------- /img/eyeClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/eyeClose.png -------------------------------------------------------------------------------- /img/eyeOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/eyeOpen.png -------------------------------------------------------------------------------- /img/feng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/feng.jpg -------------------------------------------------------------------------------- /img/fengche.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/fengche.glb -------------------------------------------------------------------------------- /img/guang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/guang.jpg -------------------------------------------------------------------------------- /img/he.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/he.jpg -------------------------------------------------------------------------------- /img/homePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/homePage.png -------------------------------------------------------------------------------- /img/huo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/huo.jpg -------------------------------------------------------------------------------- /img/hydropower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/hydropower.png -------------------------------------------------------------------------------- /img/hydropower_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/hydropower_img.png -------------------------------------------------------------------------------- /img/imgSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/imgSearch.png -------------------------------------------------------------------------------- /img/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/layer.png -------------------------------------------------------------------------------- /img/leftback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/leftback.png -------------------------------------------------------------------------------- /img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/line.png -------------------------------------------------------------------------------- /img/locationImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/locationImg.png -------------------------------------------------------------------------------- /img/miniChartBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/miniChartBtn.png -------------------------------------------------------------------------------- /img/miniChartClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/miniChartClose.png -------------------------------------------------------------------------------- /img/move2Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/move2Top.png -------------------------------------------------------------------------------- /img/move2lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/move2lower.png -------------------------------------------------------------------------------- /img/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/pie.png -------------------------------------------------------------------------------- /img/ponsume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ponsume.png -------------------------------------------------------------------------------- /img/rightback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/rightback.png -------------------------------------------------------------------------------- /img/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/scatter.png -------------------------------------------------------------------------------- /img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/search.png -------------------------------------------------------------------------------- /img/searchConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/searchConfig.png -------------------------------------------------------------------------------- /img/selall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/selall.png -------------------------------------------------------------------------------- /img/selectk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/selectk.png -------------------------------------------------------------------------------- /img/selmorerect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/selmorerect.png -------------------------------------------------------------------------------- /img/selrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/selrect.png -------------------------------------------------------------------------------- /img/showAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/showAll.png -------------------------------------------------------------------------------- /img/showData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/showData.png -------------------------------------------------------------------------------- /img/shu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/shu.jpg -------------------------------------------------------------------------------- /img/shui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/shui.jpg -------------------------------------------------------------------------------- /img/solarpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/solarpower.png -------------------------------------------------------------------------------- /img/solarpower_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/solarpower_img.png -------------------------------------------------------------------------------- /img/tatatat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tatatat.glb -------------------------------------------------------------------------------- /img/thermalpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/thermalpower.png -------------------------------------------------------------------------------- /img/thermalpower_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/thermalpower_img.png -------------------------------------------------------------------------------- /img/tower.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tower.glb -------------------------------------------------------------------------------- /img/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tower.png -------------------------------------------------------------------------------- /img/tower_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tower_img.png -------------------------------------------------------------------------------- /img/tower_white.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tower_white.glb -------------------------------------------------------------------------------- /img/transform_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/transform_img.png -------------------------------------------------------------------------------- /img/transformer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/transformer.png -------------------------------------------------------------------------------- /img/tuceng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/tuceng.png -------------------------------------------------------------------------------- /img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/up.png -------------------------------------------------------------------------------- /img/upTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/upTop.png -------------------------------------------------------------------------------- /img/vertical01.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/vertical01.glb -------------------------------------------------------------------------------- /img/windpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/windpower.png -------------------------------------------------------------------------------- /img/windpower_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/windpower_img.png -------------------------------------------------------------------------------- /img/yearData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/yearData.png -------------------------------------------------------------------------------- /img/ziqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi.jpg -------------------------------------------------------------------------------- /img/ziqi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi1.jpg -------------------------------------------------------------------------------- /img/ziqi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi2.jpg -------------------------------------------------------------------------------- /img/ziqi3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi3.jpg -------------------------------------------------------------------------------- /img/ziqi4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi4.jpg -------------------------------------------------------------------------------- /img/ziqi5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/img/ziqi5.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/0/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/0/0/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/0/1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/0/1/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/0/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/0/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/1/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/1/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/2/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/2/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/2/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/2/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/3/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/3/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/1/3/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/1/3/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/0/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/0/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/0/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/0/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/0/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/0/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/1/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/1/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/1/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/1/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/1/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/1/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/2/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/2/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/2/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/2/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/2/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/2/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/2/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/2/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/3/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/3/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/3/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/3/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/3/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/3/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/3/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/3/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/4/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/4/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/4/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/4/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/4/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/4/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/4/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/4/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/5/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/5/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/5/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/5/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/5/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/5/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/5/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/5/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/6/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/6/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/6/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/6/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/6/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/6/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/6/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/6/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/7/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/7/0.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/7/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/7/1.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/7/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/7/2.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/2/7/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/NaturalEarthII/2/7/3.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/NaturalEarthII/tilemapresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | NE2_HR_LC_SR_W_DR_recolored.tif 4 | 5 | EPSG:4326 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mx.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_my.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mz.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_px.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_py.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/SkyBox/tycho2t3_80_pz.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/airfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/airfield.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/airport.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/alcohol-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/alcohol-shop.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/america-football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/america-football.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/art-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/art-gallery.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/bakery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/bakery.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/bank.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/bar.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/baseball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/baseball.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/basketball.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/beer.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/bicycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/bicycle.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/building.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/bus.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cafe.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/camera.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/campsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/campsite.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/car.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cemetery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cemetery.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cesium.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/chemist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/chemist.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cinema.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/circle-stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/circle-stroked.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/circle.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/city.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/clothing-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/clothing-store.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/college.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/college.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/commercial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/commercial.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cricket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cricket.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/cross.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/dam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/dam.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/danger.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/disability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/disability.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/dog-park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/dog-park.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/embassy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/embassy.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/emergency-telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/emergency-telephone.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/entrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/entrance.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/farm.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/fast-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/fast-food.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/ferry.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/fire-station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/fire-station.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/fuel.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/garden.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/gift.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/golf.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/grocery.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/hairdresser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/hairdresser.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/harbor.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/heart.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/heliport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/heliport.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/hospital.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/ice-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/ice-cream.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/industrial.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/land-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/land-use.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/laundry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/laundry.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/library.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/lighthouse.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/lodging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/lodging.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/logging.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/london-underground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/london-underground.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/marker-stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/marker-stroked.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/marker.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/minefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/minefield.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/mobilephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/mobilephone.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/monument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/monument.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/museum.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/music.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/oil-well.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/oil-well.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/park.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/park2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/park2.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/parking-garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/parking-garage.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/parking.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/pharmacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/pharmacy.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/pitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/pitch.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/place-of-worship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/place-of-worship.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/playground.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/police.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/polling-place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/polling-place.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/post.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/prison.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rail-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rail-above.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rail-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rail-light.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rail-metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rail-metro.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rail-underground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rail-underground.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rail.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/religious-christian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/religious-christian.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/religious-jewish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/religious-jewish.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/religious-muslim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/religious-muslim.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/restaurant.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/roadblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/roadblock.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/rocket.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/school.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/scooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/scooter.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/shop.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/skiing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/skiing.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/slaughterhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/slaughterhouse.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/soccer.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/square-stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/square-stroked.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/square.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/star-stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/star-stroked.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/star.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/suitcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/suitcase.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/swimming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/swimming.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/telephone.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/tennis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/tennis.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/theatre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/theatre.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/toilets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/toilets.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/town-hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/town-hall.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/town.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/triangle-stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/triangle-stroked.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/triangle.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/village.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/warehouse.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/waste-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/waste-basket.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/water.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/wetland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/wetland.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/maki/zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/maki/zoo.png -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/moonSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/moonSmall.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/waterNormals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/waterNormals.jpg -------------------------------------------------------------------------------- /js/Cesium/Assets/Textures/waterNormalsSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Assets/Textures/waterNormalsSmall.jpg -------------------------------------------------------------------------------- /js/Cesium/Widgets/Animation/Animation.css: -------------------------------------------------------------------------------- 1 | .cesium-animation-theme{visibility:hidden;display:block;position:absolute;z-index:-100;}.cesium-animation-themeNormal{color:#222;}.cesium-animation-themeHover{color:#4488B0;}.cesium-animation-themeSelect{color:#242;}.cesium-animation-themeDisabled{color:#333;}.cesium-animation-themeKnob{color:#222;}.cesium-animation-themePointer{color:#2E2;}.cesium-animation-themeSwoosh{color:#8AC;}.cesium-animation-themeSwooshHover{color:#AEF;}.cesium-animation-svgText{fill:#edffff;font-family:Sans-Serif;font-size:15px;text-anchor:middle;}.cesium-animation-blank{fill:#000;fill-opacity:0.01;stroke:none;}.cesium-animation-rectButton{cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;}.cesium-animation-rectButton .cesium-animation-buttonGlow{fill:#fff;stroke:none;display:none;}.cesium-animation-rectButton:hover .cesium-animation-buttonGlow{display:block;}.cesium-animation-rectButton .cesium-animation-buttonPath{fill:#edffff;}.cesium-animation-rectButton .cesium-animation-buttonMain{stroke:#444;stroke-width:1.2;}.cesium-animation-rectButton:hover .cesium-animation-buttonMain{stroke:#AEF;}.cesium-animation-rectButton:active .cesium-animation-buttonMain{fill:#ABD6FF;}.cesium-animation-buttonDisabled{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;}.cesium-animation-buttonDisabled .cesium-animation-buttonMain{stroke:#555;}.cesium-animation-buttonDisabled .cesium-animation-buttonPath{fill:#818181;}.cesium-animation-buttonDisabled .cesium-animation-buttonGlow{display:none;}.cesium-animation-buttonToggled .cesium-animation-buttonGlow{display:block;fill:#2E2;}.cesium-animation-buttonToggled .cesium-animation-buttonMain{stroke:#2E2;}.cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow{fill:#fff;}.cesium-animation-buttonToggled:hover .cesium-animation-buttonMain{stroke:#2E2;}.cesium-animation-shuttleRingG{cursor:pointer;}.cesium-animation-shuttleRingPointer{cursor:pointer;}.cesium-animation-shuttleRingPausePointer{cursor:pointer;}.cesium-animation-shuttleRingBack{fill:#181818;fill-opacity:0.8;stroke:#333;stroke-width:1.2;}.cesium-animation-shuttleRingSwoosh line{stroke:#8AC;stroke-width:3;stroke-opacity:0.2;stroke-linecap:round;}.cesium-animation-knobOuter{cursor:pointer;stroke:#444;stroke-width:1.2;}.cesium-animation-knobInner{cursor:pointer;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Animation/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-animation-themeNormal{color:#E5F2FE;}.cesium-lighter .cesium-animation-themeHover{color:#ABD6FF;}.cesium-lighter .cesium-animation-themeSelect{color:#E5F2FE;}.cesium-lighter .cesium-animation-themeDisabled{color:#EFEFEF;}.cesium-lighter .cesium-animation-themeKnob{color:#E1E2E3;}.cesium-lighter .cesium-animation-themePointer{color:#FA5;}.cesium-lighter .cesium-animation-themeSwoosh{color:#ACE;}.cesium-lighter .cesium-animation-themeSwooshHover{color:#BDF;}.cesium-lighter .cesium-animation-svgText{fill:#111;}.cesium-lighter .cesium-animation-rectButton .cesium-animation-buttonPath{fill:#111;}.cesium-lighter .cesium-animation-rectButton .cesium-animation-buttonMain{stroke:#759DC0;}.cesium-lighter .cesium-animation-buttonToggled .cesium-animation-buttonGlow{fill:#FFAA2A;}.cesium-lighter .cesium-animation-buttonToggled .cesium-animation-buttonMain{stroke:#EA0;}.cesium-lighter .cesium-animation-rectButton:hover .cesium-animation-buttonMain{stroke:#759DC0;}.cesium-lighter .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow{fill:#fff;}.cesium-lighter .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain{stroke:#EA0;}.cesium-lighter .cesium-animation-rectButton:active .cesium-animation-buttonMain{fill:#ABD6FF;}.cesium-lighter .cesium-animation-buttonDisabled .cesium-animation-buttonMain{stroke:#D3D3D3;}.cesium-lighter .cesium-animation-buttonDisabled .cesium-animation-buttonPath{fill:#818181;}.cesium-lighter .cesium-animation-shuttleRingBack{fill:#FAFAFA;fill-opacity:1;stroke:#AEAEAE;stroke-width:1.2;}.cesium-lighter .cesium-animation-shuttleRingSwoosh line{stroke:#8AC;}.cesium-lighter .cesium-animation-knobOuter{stroke:#A5A5A5;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/BaseLayerPicker/BaseLayerPicker.css: -------------------------------------------------------------------------------- 1 | .cesium-baseLayerPicker-selected{position:absolute;top:0;left:0;width:100%;height:100%;border:none;}.cesium-baseLayerPicker-dropDown{display:block;position:absolute;box-sizing:content-box;top:auto;right:0;width:320px;max-height:500px;margin-top:5px;background-color:rgba(38,38,38,0.75);border:1px solid #444;padding:6px;overflow:auto;border-radius:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;transform:translate(0,-20%);visibility:hidden;opacity:0;transition:visibility 0s 0.2s,opacity 0.2s ease-in,transform 0.2s ease-in;}.cesium-baseLayerPicker-dropDown-visible{transform:translate(0,0);visibility:visible;opacity:1;transition:opacity 0.2s ease-out,transform 0.2s ease-out;}.cesium-baseLayerPicker-sectionTitle{display:block;font-family:sans-serif;font-size:16pt;text-align:left;color:#edffff;border-bottom:1px solid #888;margin-bottom:4px;}.cesium-baseLayerPicker-choices{display:block;position:relative;top:auto;right:0;}.cesium-baseLayerPicker-item{display:inline-block;vertical-align:top;margin:2px 5px;width:64px;text-align:center;cursor:pointer;}.cesium-baseLayerPicker-itemLabel{display:block;font-family:sans-serif;font-size:8pt;text-align:center;vertical-align:middle;color:#edffff;cursor:pointer;word-wrap:break-word;}.cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemLabel,.cesium-baseLayerPicker-item:focus .cesium-baseLayerPicker-itemLabel{text-decoration:underline;}.cesium-baseLayerPicker-itemIcon{display:inline-block;position:relative;width:inherit;height:auto;background-size:100% 100%;border:solid 1px #444;border-radius:9px;color:#edffff;margin:0;padding:0;cursor:pointer;box-sizing:border-box;}.cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon{border-color:#fff;box-shadow:0 0 8px #fff,0 0 8px #fff;}.cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel{color:rgb(189,236,248);}.cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon{border:double 4px rgb(189,236,248);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/BaseLayerPicker/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-baseLayerPicker-itemIcon{border-color:#759dc0;}.cesium-lighter .cesium-baseLayerPicker-dropDown{background-color:rgba(240,240,240,0.75);}.cesium-lighter .cesium-baseLayerPicker-sectionTitle{color:black;}.cesium-lighter .cesium-baseLayerPicker-itemLabel{color:black;}.cesium-lighter .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon{border-color:#000;}.cesium-lighter .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel{color:rgb(0,61,168);}.cesium-lighter .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon{border:double 4px rgb(0,61,168);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspector.css: -------------------------------------------------------------------------------- 1 | ul.cesium-cesiumInspector-statistics{margin:0;padding-top:3px;padding-bottom:3px;}ul.cesium-cesiumInspector-statistics + ul.cesium-cesiumInspector-statistics{border-top:1px solid #aaa;}.cesium-cesiumInspector-slider{margin-top:5px;}.cesium-cesiumInspector-slider input[type=number]{text-align:left;background-color:#222;outline:none;border:1px solid #444;color:#edffff;width:100px;border-radius:3px;padding:1px;margin-left:10px;cursor:auto;}.cesium-cesiumInspector-slider input[type=number]::-webkit-outer-spin-button,.cesium-cesiumInspector-slider input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}.cesium-cesiumInspector-slider input[type=range]{margin-left:5px;vertical-align:middle;-webkit-appearance:none;background:#ddd;height:3px;}input[type=range]:focus{outline:none;}.cesium-cesiumInspector-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:1px solid #000000;height:10px;width:10px;border-radius:5px;background:#ffffff;cursor:pointer;}.cesium-cesiumInspector-slider input[type=range]::-moz-range-thumb{border:1px solid #000000;height:10px;width:10px;border-radius:5px;background:#ffffff;cursor:pointer;}.cesium-cesiumInspector-slider input[type=range]::-moz-range-thumb{border:1px solid #000000;height:10px;width:10px;border-radius:5px;background:#ffffff;cursor:pointer;}.cesium-cesiumInspector-hide .cesium-cesiumInspector-styleEditor{display:none;}.cesium-cesiumInspector-styleEditor{padding:10px;border-radius:5px;background:rgba(48,51,54,0.8);border:1px solid #444;}.cesium-cesiumInspector-styleEditor textarea{width:100%;height:300px;background:transparent;color:#edffff;border:none;padding:0;white-space:pre;overflow-wrap:normal;overflow-x:auto;}.cesium-3DTilesInspector{width:300px;pointer-events:all;}.cesium-3DTilesInspector-statistics{font-size:11px;}.cesium-3DTilesInspector div,.cesium-3DTilesInspector input[type=range]{width:100%;box-sizing:border-box;}.cesium-cesiumInspector-error{color:#ff9e9e;overflow:auto;}.cesium-3DTilesInspector .cesium-cesiumInspector-section{margin-top:3px;}.cesium-3DTilesInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show{border-top:1px solid white;}input.cesium-cesiumInspector-url{overflow:hidden;white-space:nowrap;overflow-x:scroll;background-color:transparent;color:white;outline:none;border:none;height:1em;width:100%;}.cesium-cesiumInspector .field-group{display:table;}.cesium-cesiumInspector .field-group > label{display:table-cell;font-weight:bold;}.cesium-cesiumInspector .field-group > .field{display:table-cell;width:100%;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/CesiumInspector/CesiumInspector.css: -------------------------------------------------------------------------------- 1 | .cesium-cesiumInspector{border-radius:5px;transition:width ease-in-out 0.25s;background:rgba(48,51,54,0.8);border:1px solid #444;color:#edffff;display:inline-block;position:relative;padding:4px 12px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;}.cesium-cesiumInspector-button{text-align:center;font-size:11pt;}.cesium-cesiumInspector-visible .cesium-cesiumInspector-button{border-bottom:1px solid #aaa;padding-bottom:3px;}.cesium-cesiumInspector input:enabled,.cesium-cesiumInspector-button{cursor:pointer;}.cesium-cesiumInspector-visible{width:185px;height:auto;}.cesium-cesiumInspector-hidden{width:122px;height:17px;}.cesium-cesiumInspector-show{max-height:500px;}.cesium-cesiumInspector-hide{max-height:0;padding:0 !important;overflow:hidden;}.cesium-cesiumInspector-dropDown{margin:5px 0;font-family:sans-serif;font-size:10pt;width:185px;}.cesium-cesiumInspector-frustumStatistics{padding-left:10px;padding:5px;background-color:rgba(80,80,80,0.75);}.cesium-cesiumInspector-pickButton{background-color:rgba(0,0,0,0.3);border:1px solid #444;color:#edffff;border-radius:5px;padding:3px 7px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;margin:0 auto;}.cesium-cesiumInspector-pickButton:focus{outline:none;}.cesium-cesiumInspector-pickButton:active,.cesium-cesiumInspector-pickButtonHighlight{color:#000;background:#adf;border-color:#fff;box-shadow:0 0 8px #fff;}.cesium-cesiumInspector-center{text-align:center;}.cesium-cesiumInspector-sectionHeader{font-weight:bold;}.cesium-cesiumInspector-pickSection{border:1px solid #aaa;border-radius:5px;padding:3px;margin-bottom:5px;}.cesium-cesiumInspector-section{margin-bottom:10px;transition:max-height 0.25s;}.cesium-cesiumInspector-toggleSwitch{padding:3px;cursor:pointer;}.cesium-cesiumInspector-tileText{padding-bottom:10px;border-bottom:1px solid #aaa;}.cesium-cesiumInspector-relativeText{padding-top:10px;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/CesiumWidget/CesiumWidget.css: -------------------------------------------------------------------------------- 1 | .cesium-widget{position:relative;}.cesium-widget,.cesium-widget canvas{width:100%;height:100%;touch-action:none;}.cesium-widget-credits{display:block;position:absolute;bottom:0;left:0;color:#fff;font-size:10px;text-shadow:0px 0px 2px #000000;padding-right:5px;}.cesium-widget-credits a,.cesium-widget-credits a:visited{color:#fff;}.cesium-widget-errorPanel{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;background:rgba(0,0,0,0.7);z-index:99999;}.cesium-widget-errorPanel:before{display:inline-block;vertical-align:middle;height:100%;content:"";}.cesium-widget-errorPanel-content{width:75%;display:inline-block;text-align:left;vertical-align:middle;border:1px solid #526F82;border-radius:7px;background-color:black;color:white;font-size:10pt;padding:1em;}.cesium-widget-errorPanel-header{font-size:120%;color:#fe4;}.cesium-widget-errorPanel-scroll{overflow:auto;font-family:monospace;white-space:pre-wrap;padding:0;margin:10px 0;}.cesium-widget-errorPanel-buttonPanel{text-align:center;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/CesiumWidget/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-widget-errorPanel{background:rgba(255,255,255,0.7);}.cesium-lighter .cesium-widget-errorPanel-content{border:1px solid #526F82;border-radius:7px;background-color:white;color:black;}.cesium-lighter .cesium-widget-errorPanel-header{color:#B87D00;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/FullscreenButton/FullscreenButton.css: -------------------------------------------------------------------------------- 1 | .cesium-button.cesium-fullscreenButton{display:block;width:100%;height:100%;margin:0;border-radius:0;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Geocoder/Geocoder.css: -------------------------------------------------------------------------------- 1 | .cesium-viewer-geocoderContainer .cesium-geocoder-input{border:solid 1px #444;background-color:rgba(40,40,40,0.7);color:white;display:inline-block;vertical-align:middle;width:0;height:32px;margin:0;padding:0 32px 0 0;border-radius:0;box-sizing:border-box;transition:width ease-in-out 0.25s,background-color 0.2s ease-in-out;-webkit-appearance:none;}.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input{border-color:#aef;box-shadow:0 0 8px #fff;}.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus{border-color:#ea4;background-color:rgba(15,15,15,0.9);box-shadow:none;outline:none;}.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,.cesium-viewer-geocoderContainer .cesium-geocoder-input-wide{padding-left:4px;width:250px;}.cesium-viewer-geocoderContainer .search-results{position:absolute;background-color:#000;color:#eee;overflow-y:auto;opacity:0.8;width:100%;}.cesium-viewer-geocoderContainer .search-results ul{list-style-type:none;margin:0;padding:0;}.cesium-viewer-geocoderContainer .search-results ul li{font-size:14px;padding:3px 10px;}.cesium-viewer-geocoderContainer .search-results ul li:hover{cursor:pointer;}.cesium-viewer-geocoderContainer .search-results ul li.active{background:#48b;}.cesium-geocoder-searchButton{background-color:#303336;display:inline-block;position:absolute;cursor:pointer;width:32px;top:1px;right:1px;height:30px;vertical-align:middle;fill:#edffff;}.cesium-geocoder-searchButton:hover{background-color:#48b;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Geocoder/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-geocoder-input{border:solid 1px #759dc0;background-color:rgba(240,240,240,0.9);color:black;}.cesium-lighter .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input{border-color:#aef;box-shadow:0 0 8px #fff;}.cesium-lighter .cesium-geocoder-searchButton{background-color:#e2f0ff;fill:#111;}.cesium-lighter .cesium-geocoder-searchButton:hover{background-color:#a6d2ff;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/bingAerial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/bingAerial.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/bingAerialLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/bingAerialLabels.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/bingRoads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/bingRoads.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/blackMarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/blackMarble.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/esriNationalGeographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/esriNationalGeographic.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/esriWorldImagery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/esriWorldImagery.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/esriWorldStreetMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/esriWorldStreetMap.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/mapQuestOpenStreetMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/mapQuestOpenStreetMap.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/mapboxSatellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/mapboxSatellite.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/mapboxStreets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/mapboxStreets.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/mapboxTerrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/mapboxTerrain.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/naturalEarthII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/naturalEarthII.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/openStreetMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/openStreetMap.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/stamenToner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/stamenToner.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/ImageryProviders/stamenWatercolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/ImageryProviders/stamenWatercolor.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/Mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 52 | 55 | 58 | 64 | 65 | 66 | 67 | 80 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/MouseLeft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 46 | 48 | 51 | 56 | 57 | 58 | 59 | 72 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/MouseMiddle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 46 | 48 | 51 | 56 | 57 | 58 | 59 | 76 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/MouseRight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 46 | 48 | 51 | 56 | 57 | 58 | 59 | 76 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/Touch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 49 | 52 | 53 | 59 | 60 | 63 | 64 | 67 | 68 | 71 | 72 | 75 | 76 | 79 | 80 | 83 | 84 | 87 | 88 | 91 | 92 | 95 | 96 | 99 | 100 | 103 | 104 | 107 | 108 | 111 | 112 | 115 | 116 | 119 | 120 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/TouchRotate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 50 | 51 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/NavigationHelp/TouchZoom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 50 | 51 | -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/TerrainProviders/Ellipsoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/TerrainProviders/Ellipsoid.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/TerrainProviders/STK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/TerrainProviders/STK.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/TimelineIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/TimelineIcons.png -------------------------------------------------------------------------------- /js/Cesium/Widgets/Images/info-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/Cesium/Widgets/Images/info-loading.gif -------------------------------------------------------------------------------- /js/Cesium/Widgets/InfoBox/InfoBox.css: -------------------------------------------------------------------------------- 1 | .cesium-infoBox{display:block;position:absolute;top:50px;right:0;width:40%;max-width:480px;background:rgba(38,38,38,0.95);color:#edffff;border:1px solid #444;border-right:none;border-top-left-radius:7px;border-bottom-left-radius:7px;box-shadow:0 0 10px 1px #000;transform:translate(100%,0);visibility:hidden;opacity:0;transition:visibility 0s 0.2s,opacity 0.2s ease-in,transform 0.2s ease-in;}.cesium-infoBox-visible{transform:translate(0,0);visibility:visible;opacity:1;transition:opacity 0.2s ease-out,transform 0.2s ease-out;}.cesium-infoBox-title{display:block;height:20px;padding:5px 30px 5px 25px;background:rgba(84,84,84,1.0);border-top-left-radius:7px;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;box-sizing:content-box;}.cesium-infoBox-bodyless .cesium-infoBox-title{border-bottom-left-radius:7px;}button.cesium-infoBox-camera{display:block;position:absolute;top:4px;left:4px;width:22px;height:22px;background:transparent;border-color:transparent;border-radius:3px;padding:0 5px;margin:0;}button.cesium-infoBox-close{display:block;position:absolute;top:5px;right:5px;height:20px;background:transparent;border:none;border-radius:2px;font-weight:bold;font-size:16px;padding:0 5px;margin:0;color:#edffff;}button.cesium-infoBox-close:focus{background:rgba(238,136,0,0.44);outline:none;}button.cesium-infoBox-close:hover{background:#888;color:#000;}button.cesium-infoBox-close:active{background:#a00;color:#000;}.cesium-infoBox-bodyless .cesium-infoBox-iframe{display:none;}.cesium-infoBox-iframe{border:none;width:100%;width:calc(100% - 2px);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/InfoBox/InfoBoxDescription.css: -------------------------------------------------------------------------------- 1 | .cesium-svgPath-svg{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;}.cesium-button{display:inline-block;position:relative;background:#303336;border:1px solid #444;color:#edffff;fill:#edffff;border-radius:4px;padding:5px 12px;margin:2px 3px;cursor:pointer;overflow:hidden;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;}.cesium-button:focus{color:#fff;fill:#fff;border-color:#ea4;outline:none;}.cesium-button:hover{color:#fff;fill:#fff;background:#48b;border-color:#aef;box-shadow:0 0 8px #fff;}.cesium-button:active{color:#000;fill:#000;background:#adf;border-color:#fff;box-shadow:0 0 8px #fff;}.cesium-button:disabled,.cesium-button-disabled,.cesium-button-disabled:focus,.cesium-button-disabled:hover,.cesium-button-disabled:active{background:#303336;border-color:#444;color:#646464;fill:#646464;box-shadow:none;cursor:default;}.cesium-button option{background-color:#000;color:#eee;}.cesium-button option:disabled{color:#777;}.cesium-button input,.cesium-button label{cursor:pointer;}.cesium-button input{vertical-align:sub;}.cesium-toolbar-button{box-sizing:border-box;width:32px;height:32px;border-radius:14%;padding:0;vertical-align:middle;z-index:0;}.cesium-performanceDisplay-defaultContainer{position:absolute;top:50px;right:10px;text-align:right;}.cesium-performanceDisplay{background-color:rgba(40,40,40,0.7);padding:7px;border-radius:5px;border:1px solid #444;font:bold 12px sans-serif;}.cesium-performanceDisplay-fps{color:#e52;}.cesium-performanceDisplay-ms{color:#de3;}body{margin:0;padding:0;}.cesium-infoBox-description{font-family:sans-serif;font-size:13px;padding:4px 10px;margin-right:4px;color:#edffff;}.cesium-infoBox-description a:link,.cesium-infoBox-description a:visited,.cesium-infoBox-description a:hover,.cesium-infoBox-description a:active{color:#edffff;}.cesium-infoBox-description table{color:#edffff;}.cesium-infoBox-defaultTable{width:100%;color:#edffff;}.cesium-infoBox-defaultTable tr:nth-child(odd){background-color:rgba(84,84,84,0.8);}.cesium-infoBox-defaultTable tr:nth-child(even){background-color:rgba(84,84,84,0.25);}.cesium-infoBox-defaultTable th{font-weight:normal;padding:3px;vertical-align:middle;text-align:center;}.cesium-infoBox-defaultTable td{padding:3px;vertical-align:middle;text-align:left;}.cesium-infoBox-description-lighter{color:#000000;}.cesium-infoBox-description-lighter a:link,.cesium-infoBox-description-lighter a:visited,.cesium-infoBox-description-lighter a:hover,.cesium-infoBox-description-lighter a:active{color:#000000;}.cesium-infoBox-description-lighter table{color:#000000;}.cesium-infoBox-defaultTable-lighter{width:100%;color:#000000;}.cesium-infoBox-defaultTable-lighter tr:nth-child(odd){background-color:rgba(179,179,179,0.8);}.cesium-infoBox-defaultTable-lighter tr:nth-child(even){background-color:rgba(179,179,179,0.25);}.cesium-infoBox-loadingContainer{margin:5px;text-align:center;}.cesium-infoBox-loading{display:inline-block;background-image:url(../Images/info-loading.gif);width:16px;height:11px;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/NavigationHelpButton/NavigationHelpButton.css: -------------------------------------------------------------------------------- 1 | .cesium-navigationHelpButton-wrapper{position:relative;display:inline-block;}.cesium-navigation-help{visibility:hidden;position:absolute;top:38px;right:2px;width:250px;border-radius:10px;transform:scale(0.01);transform-origin:234px -10px;transition:visibility 0s 0.25s,transform 0.25s ease-in;}.cesium-navigation-help-visible{visibility:visible;transform:scale(1);transition:transform 0.25s ease-out;}.cesium-navigation-help-instructions{border:1px solid #444;background-color:rgba(38,38,38,0.75);padding-bottom:5px;border-radius:0 0 10px 10px;}.cesium-click-navigation-help{display:none;}.cesium-touch-navigation-help{display:none;padding-top:5px;}.cesium-click-navigation-help-visible{display:block;}.cesium-touch-navigation-help-visible{display:block;}.cesium-navigation-help-pan{color:#66ccff;font-weight:bold;}.cesium-navigation-help-zoom{color:#65fd00;font-weight:bold;}.cesium-navigation-help-rotate{color:#ffd800;font-weight:bold;}.cesium-navigation-help-tilt{color:#d800d8;font-weight:bold;}.cesium-navigation-help-details{color:#ffffff;}.cesium-navigation-button{color:#fff;background-color:transparent;border-bottom:none;border-top:1px solid #444;border-right:1px solid #444;margin:0;width:50%;cursor:pointer;}.cesium-navigation-button-icon{vertical-align:middle;padding:5px 1px;}.cesium-navigation-button:focus{outline:none;}.cesium-navigation-button-left{border-radius:10px 0 0 0;border-left:1px solid #444;}.cesium-navigation-button-right{border-radius:0 10px 0 0;border-left:none;}.cesium-navigation-button-selected{background-color:rgba(38,38,38,0.75);}.cesium-navigation-button-unselected{background-color:rgba(0,0,0,0.75);}.cesium-navigation-button-unselected:hover{background-color:rgba(76,76,76,0.75);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/NavigationHelpButton/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-navigation-help-instructions{border:1px solid #759dc0;background-color:rgba(255,255,255,0.9);}.cesium-lighter .cesium-navigation-help-pan{color:#66ccee;font-weight:bold;}.cesium-lighter .cesium-navigation-help-zoom{color:#65ec00;font-weight:bold;}.cesium-lighter .cesium-navigation-help-rotate{color:#eec722;font-weight:bold;}.cesium-lighter .cesium-navigation-help-tilt{color:#d800d8;font-weight:bold;}.cesium-lighter .cesium-navigation-help-details{color:#222222;}.cesium-lighter .cesium-navigation-button{color:#222222;border-top:1px solid #759dc0;border-right:1px solid #759dc0;}.cesium-lighter .cesium-navigation-button-selected{background-color:rgba(196,225,255,0.9);}.cesium-lighter .cesium-navigation-button-unselected{background-color:rgba(226,240,255,0.9);}.cesium-lighter .cesium-navigation-button-unselected:hover{background-color:rgba(166,210,255,0.9);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/PerformanceWatchdog/PerformanceWatchdog.css: -------------------------------------------------------------------------------- 1 | .cesium-performance-watchdog-message-area{position:relative;background-color:yellow;color:black;padding:10px;}.cesium-performance-watchdog-message{margin-right:30px;}.cesium-performance-watchdog-message-dismiss{position:absolute;right:0;margin:0 10px 0 0;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/ProjectionPicker/ProjectionPicker.css: -------------------------------------------------------------------------------- 1 | span.cesium-projectionPicker-wrapper{display:inline-block;position:relative;margin:0 3px;}.cesium-projectionPicker-visible{visibility:visible;opacity:1;transition:opacity 0.25s linear;}.cesium-projectionPicker-hidden{visibility:hidden;opacity:0;transition:visibility 0s 0.25s,opacity 0.25s linear;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-none{display:none;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon{box-sizing:border-box;padding:0;margin:3px 0;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic{margin:0 0 3px 0;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic{left:100%;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective{left:-100%;}.cesium-projectionPicker-wrapper .cesium-projectionPicker-selected{border-color:#2e2;box-shadow:0 0 8px #fff,0 0 8px #fff;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/SceneModePicker/SceneModePicker.css: -------------------------------------------------------------------------------- 1 | span.cesium-sceneModePicker-wrapper{display:inline-block;position:relative;margin:0 3px;}.cesium-sceneModePicker-visible{visibility:visible;opacity:1;transition:opacity 0.25s linear;}.cesium-sceneModePicker-hidden{visibility:hidden;opacity:0;transition:visibility 0s 0.25s,opacity 0.25s linear;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-none{display:none;}.cesium-sceneModePicker-slide-svg{transition:left 2s;top:0;left:0;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon{box-sizing:border-box;padding:0;margin:3px 0;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D,.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView,.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D{margin:0 0 3px 0;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-icon2D{left:100%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-iconColumbusView{left:200%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon3D{left:-200%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon2D{left:-100%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-icon3D{left:-100%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-iconColumbusView{left:100%;}.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-selected{border-color:#2e2;box-shadow:0 0 8px #fff,0 0 8px #fff;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/SelectionIndicator/SelectionIndicator.css: -------------------------------------------------------------------------------- 1 | .cesium-selection-wrapper{position:absolute;width:160px;height:160px;pointer-events:none;visibility:hidden;opacity:0;transition:visibility 0s 0.2s,opacity 0.2s ease-in;}.cesium-selection-wrapper-visible{visibility:visible;opacity:1;transition:opacity 0.2s ease-out;}.cesium-selection-wrapper svg{fill:#2e2;stroke:#000;stroke-width:1.1px;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Timeline/Timeline.css: -------------------------------------------------------------------------------- 1 | .cesium-timeline-main{position:relative;left:0;bottom:0;overflow:hidden;border:solid 1px #888;}.cesium-timeline-trackContainer{width:100%;overflow:auto;border-top:solid 1px #888;position:relative;top:0;left:0;}.cesium-timeline-tracks{position:absolute;top:0;left:0;width:100%;}.cesium-timeline-needle{position:absolute;left:0;top:1.7em;bottom:0;width:1px;background:#F00;}.cesium-timeline-bar{position:relative;left:0;top:0;overflow:hidden;cursor:pointer;width:100%;height:1.7em;background:linear-gradient(to bottom,rgba(116,117,119,0.8) 0%,rgba(58,68,82,0.8) 11%,rgba(46,50,56,0.8) 46%,rgba(53,53,53,0.8) 81%,rgba(53,53,53,0.8) 100%);}.cesium-timeline-ruler{visibility:hidden;white-space:nowrap;font-size:80%;z-index:-200;}.cesium-timeline-highlight{position:absolute;bottom:0;left:0;background:#08F;}.cesium-timeline-ticLabel{position:absolute;top:0;left:0;white-space:nowrap;font-size:80%;color:#eee;}.cesium-timeline-ticMain{position:absolute;bottom:0;left:0;width:1px;height:50%;background:#eee;}.cesium-timeline-ticSub{position:absolute;bottom:0;left:0;width:1px;height:33%;background:#aaa;}.cesium-timeline-ticTiny{position:absolute;bottom:0;left:0;width:1px;height:25%;background:#888;}.cesium-timeline-icon16{display:block;position:absolute;width:16px;height:16px;background-image:url("../Images/TimelineIcons.png");background-repeat:no-repeat;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Timeline/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-timeline-bar{background:linear-gradient(to bottom,#eeeeee 0%,#ffffff 50%,#fafafa 100%);}.cesium-lighter .cesium-timeline-ticLabel{color:#000;}.cesium-lighter .cesium-timeline-ticMain{position:absolute;bottom:0;left:0;width:1px;height:50%;background:#000;}.cesium-lighter .cesium-timeline-ticSub{background:#444;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/VRButton/VRButton.css: -------------------------------------------------------------------------------- 1 | .cesium-button.cesium-vrButton{display:block;width:100%;height:100%;margin:0;border-radius:0;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/Viewer/Viewer.css: -------------------------------------------------------------------------------- 1 | .cesium-viewer{font-family:sans-serif;font-size:16px;overflow:hidden;display:block;position:relative;top:0;left:0;width:100%;height:100%;}.cesium-viewer-cesiumWidgetContainer{width:100%;height:100%;}.cesium-viewer-bottom{display:block;position:absolute;bottom:0;left:0;right:0;padding-right:5px;}.cesium-viewer .cesium-widget-credits{display:inline;position:static;bottom:auto;left:auto;padding-right:0;color:#ffffff;font-size:10px;text-shadow:0 0 2px #000000;}.cesium-viewer-timelineContainer{position:absolute;bottom:0;left:169px;right:29px;height:27px;padding:0;margin:0;overflow:hidden;font-size:14px;}.cesium-viewer-animationContainer{position:absolute;bottom:0;left:0;padding:0;width:169px;height:112px;}.cesium-viewer-fullscreenContainer{position:absolute;bottom:0;right:0;padding:0;width:29px;height:29px;overflow:hidden;}.cesium-viewer-vrContainer{position:absolute;bottom:0;right:0;padding:0;width:29px;height:29px;overflow:hidden;}.cesium-viewer-toolbar{display:block;position:absolute;top:5px;right:5px;}.cesium-viewer-cesiumInspectorContainer{display:block;position:absolute;top:50px;right:10px;}.cesium-viewer-geocoderContainer{position:relative;display:inline-block;margin:0 3px;}.cesium-viewer-cesium3DTilesInspectorContainer{display:block;position:absolute;top:50px;right:10px;max-height:100%;padding-bottom:70px;box-sizing:border-box;overflow:auto;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/lighter.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-button{color:#111;fill:#111;background:#e2f0ff;border:1px solid #759dc0;}.cesium-lighter .cesium-button:focus{color:#000;fill:#000;border-color:#ea4;}.cesium-lighter .cesium-button:hover{color:#000;fill:#000;background:#a6d2ff;border-color:#aef;box-shadow:0 0 8px #777;}.cesium-lighter .cesium-button:active{color:#fff;fill:#fff;background:#48b;border-color:#ea0;}.cesium-lighter .cesium-button:disabled,.cesium-lighter .cesium-button-disabled,.cesium-lighter .cesium-button-disabled:focus,.cesium-lighter .cesium-button-disabled:hover,.cesium-lighter .cesium-button-disabled:active{background:#ccc;border-color:#999;color:#999;fill:#999;box-shadow:none;}.cesium-lighter .cesium-performanceDisplay{background-color:#e2f0ff;border-color:#759dc0;}.cesium-lighter .cesium-performanceDisplay-fps{color:#e52;}.cesium-lighter .cesium-performanceDisplay-ms{color:#ea4;}.cesium-lighter .cesium-animation-themeNormal{color:#E5F2FE;}.cesium-lighter .cesium-animation-themeHover{color:#ABD6FF;}.cesium-lighter .cesium-animation-themeSelect{color:#E5F2FE;}.cesium-lighter .cesium-animation-themeDisabled{color:#EFEFEF;}.cesium-lighter .cesium-animation-themeKnob{color:#E1E2E3;}.cesium-lighter .cesium-animation-themePointer{color:#FA5;}.cesium-lighter .cesium-animation-themeSwoosh{color:#ACE;}.cesium-lighter .cesium-animation-themeSwooshHover{color:#BDF;}.cesium-lighter .cesium-animation-svgText{fill:#111;}.cesium-lighter .cesium-animation-rectButton .cesium-animation-buttonPath{fill:#111;}.cesium-lighter .cesium-animation-rectButton .cesium-animation-buttonMain{stroke:#759DC0;}.cesium-lighter .cesium-animation-buttonToggled .cesium-animation-buttonGlow{fill:#FFAA2A;}.cesium-lighter .cesium-animation-buttonToggled .cesium-animation-buttonMain{stroke:#EA0;}.cesium-lighter .cesium-animation-rectButton:hover .cesium-animation-buttonMain{stroke:#759DC0;}.cesium-lighter .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow{fill:#fff;}.cesium-lighter .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain{stroke:#EA0;}.cesium-lighter .cesium-animation-rectButton:active .cesium-animation-buttonMain{fill:#ABD6FF;}.cesium-lighter .cesium-animation-buttonDisabled .cesium-animation-buttonMain{stroke:#D3D3D3;}.cesium-lighter .cesium-animation-buttonDisabled .cesium-animation-buttonPath{fill:#818181;}.cesium-lighter .cesium-animation-shuttleRingBack{fill:#FAFAFA;fill-opacity:1;stroke:#AEAEAE;stroke-width:1.2;}.cesium-lighter .cesium-animation-shuttleRingSwoosh line{stroke:#8AC;}.cesium-lighter .cesium-animation-knobOuter{stroke:#A5A5A5;}.cesium-lighter .cesium-baseLayerPicker-itemIcon{border-color:#759dc0;}.cesium-lighter .cesium-baseLayerPicker-dropDown{background-color:rgba(240,240,240,0.75);}.cesium-lighter .cesium-baseLayerPicker-sectionTitle{color:black;}.cesium-lighter .cesium-baseLayerPicker-itemLabel{color:black;}.cesium-lighter .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon{border-color:#000;}.cesium-lighter .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel{color:rgb(0,61,168);}.cesium-lighter .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon{border:double 4px rgb(0,61,168);}.cesium-lighter .cesium-widget-errorPanel{background:rgba(255,255,255,0.7);}.cesium-lighter .cesium-widget-errorPanel-content{border:1px solid #526F82;border-radius:7px;background-color:white;color:black;}.cesium-lighter .cesium-widget-errorPanel-header{color:#B87D00;}.cesium-lighter .cesium-geocoder-input{border:solid 1px #759dc0;background-color:rgba(240,240,240,0.9);color:black;}.cesium-lighter .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input{border-color:#aef;box-shadow:0 0 8px #fff;}.cesium-lighter .cesium-geocoder-searchButton{background-color:#e2f0ff;fill:#111;}.cesium-lighter .cesium-geocoder-searchButton:hover{background-color:#a6d2ff;}.cesium-lighter .cesium-timeline-bar{background:linear-gradient(to bottom,#eeeeee 0%,#ffffff 50%,#fafafa 100%);}.cesium-lighter .cesium-timeline-ticLabel{color:#000;}.cesium-lighter .cesium-timeline-ticMain{position:absolute;bottom:0;left:0;width:1px;height:50%;background:#000;}.cesium-lighter .cesium-timeline-ticSub{background:#444;}.cesium-lighter .cesium-navigation-help-instructions{border:1px solid #759dc0;background-color:rgba(255,255,255,0.9);}.cesium-lighter .cesium-navigation-help-pan{color:#66ccee;font-weight:bold;}.cesium-lighter .cesium-navigation-help-zoom{color:#65ec00;font-weight:bold;}.cesium-lighter .cesium-navigation-help-rotate{color:#eec722;font-weight:bold;}.cesium-lighter .cesium-navigation-help-tilt{color:#d800d8;font-weight:bold;}.cesium-lighter .cesium-navigation-help-details{color:#222222;}.cesium-lighter .cesium-navigation-button{color:#222222;border-top:1px solid #759dc0;border-right:1px solid #759dc0;}.cesium-lighter .cesium-navigation-button-selected{background-color:rgba(196,225,255,0.9);}.cesium-lighter .cesium-navigation-button-unselected{background-color:rgba(226,240,255,0.9);}.cesium-lighter .cesium-navigation-button-unselected:hover{background-color:rgba(166,210,255,0.9);} -------------------------------------------------------------------------------- /js/Cesium/Widgets/lighterShared.css: -------------------------------------------------------------------------------- 1 | .cesium-lighter .cesium-button{color:#111;fill:#111;background:#e2f0ff;border:1px solid #759dc0;}.cesium-lighter .cesium-button:focus{color:#000;fill:#000;border-color:#ea4;}.cesium-lighter .cesium-button:hover{color:#000;fill:#000;background:#a6d2ff;border-color:#aef;box-shadow:0 0 8px #777;}.cesium-lighter .cesium-button:active{color:#fff;fill:#fff;background:#48b;border-color:#ea0;}.cesium-lighter .cesium-button:disabled,.cesium-lighter .cesium-button-disabled,.cesium-lighter .cesium-button-disabled:focus,.cesium-lighter .cesium-button-disabled:hover,.cesium-lighter .cesium-button-disabled:active{background:#ccc;border-color:#999;color:#999;fill:#999;box-shadow:none;}.cesium-lighter .cesium-performanceDisplay{background-color:#e2f0ff;border-color:#759dc0;}.cesium-lighter .cesium-performanceDisplay-fps{color:#e52;}.cesium-lighter .cesium-performanceDisplay-ms{color:#ea4;} -------------------------------------------------------------------------------- /js/Cesium/Widgets/shared.css: -------------------------------------------------------------------------------- 1 | .cesium-svgPath-svg{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;}.cesium-button{display:inline-block;position:relative;background:#303336;border:1px solid #444;color:#edffff;fill:#edffff;border-radius:4px;padding:5px 12px;margin:2px 3px;cursor:pointer;overflow:hidden;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;}.cesium-button:focus{color:#fff;fill:#fff;border-color:#ea4;outline:none;}.cesium-button:hover{color:#fff;fill:#fff;background:#48b;border-color:#aef;box-shadow:0 0 8px #fff;}.cesium-button:active{color:#000;fill:#000;background:#adf;border-color:#fff;box-shadow:0 0 8px #fff;}.cesium-button:disabled,.cesium-button-disabled,.cesium-button-disabled:focus,.cesium-button-disabled:hover,.cesium-button-disabled:active{background:#303336;border-color:#444;color:#646464;fill:#646464;box-shadow:none;cursor:default;}.cesium-button option{background-color:#000;color:#eee;}.cesium-button option:disabled{color:#777;}.cesium-button input,.cesium-button label{cursor:pointer;}.cesium-button input{vertical-align:sub;}.cesium-toolbar-button{box-sizing:border-box;width:32px;height:32px;border-radius:14%;padding:0;vertical-align:middle;z-index:0;}.cesium-performanceDisplay-defaultContainer{position:absolute;top:50px;right:10px;text-align:right;}.cesium-performanceDisplay{background-color:rgba(40,40,40,0.7);padding:7px;border-radius:5px;border:1px solid #444;font:bold 12px sans-serif;}.cesium-performanceDisplay-fps{color:#e52;}.cesium-performanceDisplay-ms{color:#de3;} -------------------------------------------------------------------------------- /js/Cesium/Workers/transferTypedArrayTest.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cesium - https://github.com/AnalyticalGraphicsInc/cesium 3 | * 4 | * Copyright 2011-2017 Cesium Contributors 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * Columbus View (Pat. Pend.) 19 | * 20 | * Portions licensed separately. 21 | * See https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md for full licensing details. 22 | */ 23 | "undefined"==typeof self&&(self={}),self.onmessage=function(e){"use strict";var s=e.data.array,a=self.webkitPostMessage||self.postMessage;try{a({array:s},[s.buffer])}catch(e){a({})}}; -------------------------------------------------------------------------------- /js/autoWindows.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | 3 | var winHeight = $(window).height(); 4 | var menuHeight = $("#leftbox").height(); 5 | 6 | if(menuHeight>=winHeight){ 7 | $("#leftbox").css("height",auto); 8 | } 9 | }); 10 | 11 | function isFullScreen (){ 12 | if( 13 | window.outerHeight === screen.availHeight 14 | ){ 15 | if(window.outerWidth === screen.availWidth 16 | 17 | ){ 18 | return true;// 全屏 19 | } 20 | } 21 | return false; // 不是全屏 22 | } 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /js/clearAll.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#clear').click(function () { 3 | clearAll(); 4 | }); 5 | }); 6 | function clearAll() { 7 | $('#PieChart1').hide(); 8 | $('#PieChart2').hide(); 9 | $('#BarCharts').hide(); 10 | $('#LineCharts').hide(); 11 | } 12 | -------------------------------------------------------------------------------- /js/eleoc.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | /** 4 | * 界面打开逻辑 5 | */ 6 | // /电力设施打开按钮,第一次打开获取点的数据信息 7 | $('#elefac').click(function () { 8 | $('#eleFacMenu').toggle(); 9 | $('#eleLoadMenu').hide(); 10 | $('#eleGeoMenu').hide(); 11 | $('#controllBox').hide(); 12 | }); 13 | $('#leftbackBtn').click(function () { 14 | $('#eleFacMenu').hide(); 15 | }); 16 | $('#leftbackBtn1').click(function () { 17 | $('#eleLoadMenu').hide(); 18 | }); 19 | $('#leftbackBtn2').click(function () { 20 | $('#eleGeoMenu').hide(); 21 | }); 22 | $('#eleload').click(function () { 23 | $('#eleFacMenu').hide(); 24 | $('#eleGeoMenu').hide(); 25 | $('#eleLoadMenu').toggle(); 26 | $('#controllBox').hide(); 27 | }); 28 | $('#elegeo').click(function () { 29 | $('#eleGeoMenu').toggle(); 30 | $('#eleLoadMenu').hide(); 31 | $('#eleFacMenu').hide(); 32 | $('#controllBox').hide(); 33 | }); 34 | $('#rightbackBtn').click(function () { 35 | $('#chartsMenu').hide(); 36 | }); 37 | $('#chartsBtn').click(function () { 38 | if($('#rectArea').prop('checked')){ 39 | if(south ===0 && north===0){ 40 | alert("请选择框选范围"); 41 | }else{ 42 | points = null; 43 | $.getJSON(rectangleUrlParse+"&lng1="+west+"&lat1="+north+"&lng2="+east+"&lat2="+south+"", function (data) { 44 | //var points = eval("("+data+")");老版方法,不推荐 45 | if (data.pdate.RECORDS.length>0){ 46 | points = data.pdate.RECORDS; 47 | sortPowerStaion(points); 48 | } else { 49 | alert("数据为空") 50 | } 51 | }); 52 | } 53 | }else if($('#rectSelfArea').prop('checked')){ 54 | points = null; 55 | $.getJSON(rectangleUrlParse+"&lng1="+lng1+"&lat1="+lat1+"&lng2="+lng2+"&lat2="+lat2+"", function (data) { 56 | //var points = eval("("+data+")");老版方法,不推荐 57 | if (data!==null){ 58 | points = data.pdate.RECORDS; 59 | sortPowerStaion(points); 60 | } else { 61 | alert("数据为空"); 62 | } 63 | }); 64 | 65 | }else { 66 | points = null; 67 | if(points ===null){ 68 | $.getJSON(urlParse,function (data) { 69 | //var points = eval("("+data+")");老版方法,不推荐 70 | points = data.pdate.RECORDS; 71 | sortPowerStaion(points); 72 | }); 73 | } 74 | } 75 | 76 | $('#RightTitle').text("图表统计"); 77 | if(showPoints.length!==0){ 78 | charFlag = 1; 79 | }else if($('#nightRGB').prop("checked")||$('#night_power').prop("checked")){ 80 | if(powerConsumpationData){ 81 | charFlag = 2; 82 | } 83 | } 84 | $('#chartsMenu').toggle(); 85 | $('#chartManager').hide(); 86 | }); 87 | $('#righttwoback').click(function () { 88 | $('#chartManager').hide(); 89 | }); 90 | $('#chartManBtn').click(function () { 91 | 92 | if(powerMadeData === null){ 93 | $.getJSON("./json/elescale.json",function (data) { 94 | powerMadeData = data.RECORDS; 95 | //alert(powerMadeData[1].id); 96 | }); 97 | } 98 | if(dayofPowerData === null){ 99 | $.getJSON("./json/dayofpower.json",function (data) { 100 | dayofPowerData = data.RECORDS; 101 | //alert(powerMadeData[1].id); 102 | }); 103 | } 104 | if(perPowerData === null){ 105 | $.getJSON("./json/perpower.json",function (data) { 106 | perPowerData = data.RECORDS; 107 | }); 108 | } 109 | if(ecOfPowerData === null){ 110 | $.getJSON("./json/ecofpower.json",function (data) { 111 | ecOfPowerData = data.RECORDS; 112 | //alert(powerMadeData[1].id); 113 | }); 114 | } 115 | if(provincePowerData === null){ 116 | $.getJSON("./json/powerofprovince.json",function (data) { 117 | provincePowerData = data.RECORDS; 118 | //alert(powerMadeData[1].id); 119 | }); 120 | } 121 | if(powerCountData === null){ 122 | $.getJSON("./json/powercount.json",function (data) { 123 | powerCountData = data.RECORDS; 124 | //alert(powerMadeData[1].id); 125 | }); 126 | } 127 | //默认打图表统计,首先统计电力,然后统计区域耗电 128 | $('#chartManager').toggle(); 129 | $('#chartsMenu').hide(); 130 | }); 131 | $('#chartConBox').click(function () { 132 | $('#chartConMenu').toggle(); 133 | }).mouseenter(function () { 134 | $('#before').css("background","rgba(60,60,60,0)") ; 135 | }).mouseleave(function () { 136 | $('#before').css("background","rgba(60,60,60,0.65)"); 137 | }); 138 | $('#inChartConBtnBox').click(function () { 139 | $('#chartConMenu').hide(); 140 | }); 141 | //图层界面打开的同时,对点的信息进行分类 142 | $('#tuBtn').click(function () { 143 | $('#controllBox').toggle(); 144 | $('#eleFacMenu').hide(); 145 | $('#eleGeoMenu').hide(); 146 | $('#eleLoadMenu').hide(); 147 | }); 148 | //var pt1 = new Cesium.Cartesian2(0,0); 149 | //var pt2= new Cesium.Cartesian2($('#windows').offsetWidth,$('#windows').offsetHeight); 150 | //alert($('#windows').offsetWidth); 151 | $('#leftbackBtn3').click(function () { 152 | $('#controllBox').hide(); 153 | }); 154 | 155 | $('#pictureBoxCloseBtn').click(function () { 156 | $('#pictureBox').hide(); 157 | }); 158 | 159 | 160 | }); 161 | 162 | 163 | -------------------------------------------------------------------------------- /js/initBar.js: -------------------------------------------------------------------------------- 1 | var xAxisData = []; 2 | var data1 = []; 3 | var data2 = []; 4 | var data3 = []; 5 | var data4 = []; 6 | 7 | for (var i = 0; i < 10; i++) { 8 | xAxisData.push('Class' + i); 9 | data1.push((Math.random() * 2).toFixed(2)); 10 | data2.push(-Math.random().toFixed(2)); 11 | data3.push((Math.random() * 5).toFixed(2)); 12 | data4.push((Math.random() + 0.3).toFixed(2)); 13 | } 14 | 15 | var itemStyle = { 16 | normal: { 17 | }, 18 | emphasis: { 19 | barBorderWidth: 1, 20 | shadowBlur: 10, 21 | shadowOffsetX: 0, 22 | shadowOffsetY: 0, 23 | shadowColor: 'rgba(0,0,0,0.5)' 24 | } 25 | }; 26 | 27 | BarOption = { 28 | backgroundColor: 'rgba(0,0,0,0.5)', 29 | legend: { 30 | data: ['bar', 'bar2', 'bar3', 'bar4'], 31 | align: 'left', 32 | left: 10 33 | }, 34 | brush: { 35 | toolbox: ['rect', 'polygon', 'lineX', 'lineY', 'keep', 'clear'], 36 | xAxisIndex: 0 37 | }, 38 | toolbox: { 39 | show : true, 40 | feature: { 41 | magicType: { 42 | type: ['stack', 'tiled'] 43 | }, 44 | dataView: {}, 45 | myCloseTool:{ 46 | show:true, 47 | title:'关闭', 48 | icon:'M512.001 15.678C237.414 15.678 14.82 238.273 14.82 512.86S237.414 1010.04 512 1010.04s497.18-222.593 497.18-497.18S786.589 15.678 512.002 15.678z m213.211 645.937c17.798 17.803 17.798 46.657 0 64.456-17.798 17.797-46.658 17.797-64.456 0L512.001 577.315 363.241 726.07c-17.799 17.797-46.652 17.797-64.45 0-17.804-17.799-17.804-46.653 0-64.456L447.545 512.86 298.79 364.104c-17.803-17.798-17.803-46.657 0-64.455 17.799-17.798 46.652-17.798 64.45 0l148.761 148.755 148.755-148.755c17.798-17.798 46.658-17.798 64.456 0 17.798 17.798 17.798 46.657 0 64.455L576.456 512.86l148.756 148.755z m0 0', 49 | onclick:function () { 50 | $('#BarCharts').hide(); 51 | } 52 | } 53 | } 54 | }, 55 | tooltip: {}, 56 | xAxis: { 57 | data: xAxisData, 58 | name: 'X Axis', 59 | silent: false, 60 | axisLine: {onZero: true}, 61 | splitLine: {show: false}, 62 | splitArea: {show: false} 63 | }, 64 | yAxis: { 65 | inverse: true, 66 | splitArea: {show: false} 67 | }, 68 | grid: { 69 | left: 100 70 | }, 71 | visualMap: { 72 | type: 'continuous', 73 | dimension: 1, 74 | text: ['High', 'Low'], 75 | inverse: true, 76 | itemHeight: 200, 77 | calculable: true, 78 | min: -2, 79 | max: 6, 80 | top: 60, 81 | left: 10, 82 | inRange: { 83 | colorLightness: [0.4, 0.8] 84 | }, 85 | outOfRange: { 86 | color: '#bbb' 87 | }, 88 | controller: { 89 | inRange: { 90 | color: '#2f4554' 91 | } 92 | } 93 | }, 94 | series: [ 95 | { 96 | name: 'bar', 97 | type: 'bar', 98 | stack: 'one', 99 | itemStyle: itemStyle, 100 | data: data1 101 | }, 102 | { 103 | name: 'bar2', 104 | type: 'bar', 105 | stack: 'one', 106 | itemStyle: itemStyle, 107 | data: data2 108 | }, 109 | { 110 | name: 'bar3', 111 | type: 'bar', 112 | stack: 'two', 113 | itemStyle: itemStyle, 114 | data: data3 115 | }, 116 | { 117 | name: 'bar4', 118 | type: 'bar', 119 | stack: 'two', 120 | itemStyle: itemStyle, 121 | data: data4 122 | } 123 | ] 124 | }; 125 | $(document).ready(function () { 126 | $('#bar').click(function () { 127 | $('#bcm').slideToggle("fast"); 128 | }).mouseenter(function () { 129 | $('#bar').css("background-color","#595959"); 130 | $('#bcm').slideDown("fast"); 131 | }).mouseleave(function () { 132 | $('#bar').css("background-color","#0000"); 133 | $('#bcm').mouseleave(function () { 134 | $('#bcm').slideUp("fast"); 135 | }); 136 | }); 137 | $('#BBtn1').click(function () { 138 | $('#bcm').hide(); 139 | var myChart1 = echarts.init(document.getElementById('BarCharts')); 140 | myChart1.setOption(BarOption); 141 | myChart1.on('brushSelected', renderBrushed); 142 | $('#BarCharts').css({"z-index":'2'}).show(); 143 | function renderBrushed(params) { 144 | var brushed = []; 145 | var brushComponent = params.batch[0]; 146 | 147 | for (var sIdx = 0; sIdx < brushComponent.selected.length; sIdx++) { 148 | var rawIndices = brushComponent.selected[sIdx].dataIndex; 149 | brushed.push('[Series ' + sIdx + '] ' + rawIndices.join(', ')); 150 | } 151 | 152 | myChart1.setOption({ 153 | title: { 154 | backgroundColor: '#333', 155 | text: 'SELECTED DATA INDICES: \n' + brushed.join('\n'), 156 | bottom: 0, 157 | right: 0, 158 | width: 100, 159 | textStyle: { 160 | fontSize: 12, 161 | color: '#fff' 162 | } 163 | } 164 | }); 165 | } 166 | }); 167 | }); -------------------------------------------------------------------------------- /js/initLine.js: -------------------------------------------------------------------------------- 1 | LineOption = { 2 | title: { 3 | text: '堆叠区域图' 4 | }, 5 | tooltip : { 6 | trigger: 'axis', 7 | axisPointer: { 8 | type: 'cross', 9 | label: { 10 | backgroundColor: '#6a7985' 11 | } 12 | } 13 | }, 14 | legend: { 15 | data:['邮件营销','联盟广告','视频广告','直接访问','搜索引擎'] 16 | }, 17 | toolbox: { 18 | feature: { 19 | saveAsImage: {}, 20 | myCloseTool:{ 21 | show:true, 22 | title:'关闭', 23 | icon:'M512.001 15.678C237.414 15.678 14.82 238.273 14.82 512.86S237.414 1010.04 512 1010.04s497.18-222.593 497.18-497.18S786.589 15.678 512.002 15.678z m213.211 645.937c17.798 17.803 17.798 46.657 0 64.456-17.798 17.797-46.658 17.797-64.456 0L512.001 577.315 363.241 726.07c-17.799 17.797-46.652 17.797-64.45 0-17.804-17.799-17.804-46.653 0-64.456L447.545 512.86 298.79 364.104c-17.803-17.798-17.803-46.657 0-64.455 17.799-17.798 46.652-17.798 64.45 0l148.761 148.755 148.755-148.755c17.798-17.798 46.658-17.798 64.456 0 17.798 17.798 17.798 46.657 0 64.455L576.456 512.86l148.756 148.755z m0 0', 24 | onclick:function () { 25 | $('#LineCharts').hide(); 26 | } 27 | } 28 | } 29 | }, 30 | grid: { 31 | left: '3%', 32 | right: '4%', 33 | bottom: '3%', 34 | containLabel: true 35 | }, 36 | xAxis : [ 37 | { 38 | type : 'category', 39 | boundaryGap : false, 40 | data : ['周一','周二','周三','周四','周五','周六','周日'] 41 | } 42 | ], 43 | yAxis : [ 44 | { 45 | type : 'value' 46 | } 47 | ], 48 | series : [ 49 | { 50 | name:'邮件营销', 51 | type:'line', 52 | stack: '总量', 53 | areaStyle: {normal: {}}, 54 | data:[120, 132, 101, 134, 90, 230, 210] 55 | }, 56 | { 57 | name:'联盟广告', 58 | type:'line', 59 | stack: '总量', 60 | areaStyle: {normal: {}}, 61 | data:[220, 182, 191, 234, 290, 330, 310] 62 | }, 63 | { 64 | name:'视频广告', 65 | type:'line', 66 | stack: '总量', 67 | areaStyle: {normal: {}}, 68 | data:[150, 232, 201, 154, 190, 330, 410] 69 | }, 70 | { 71 | name:'直接访问', 72 | type:'line', 73 | stack: '总量', 74 | areaStyle: {normal: {}}, 75 | data:[320, 332, 301, 334, 390, 330, 320] 76 | }, 77 | { 78 | name:'搜索引擎', 79 | type:'line', 80 | stack: '总量', 81 | label: { 82 | normal: { 83 | show: true, 84 | position: 'top' 85 | } 86 | }, 87 | areaStyle: {normal: {}}, 88 | data:[820, 932, 901, 934, 1290, 1330, 1320] 89 | } 90 | ] 91 | }; 92 | $(document).ready(function () { 93 | $('#line').click(function () { 94 | $("#lcm").slideToggle("fast"); 95 | }).mouseenter(function () { 96 | $('#line').css("background-color","#595959"); 97 | $('#lcm').slideDown("fast"); 98 | }).mouseleave(function () { 99 | $('#line').css("background-color","#0000"); 100 | $('#lcm').mouseleave(function () { 101 | $('#lcm').slideUp("fast"); 102 | }); 103 | }); 104 | $("#LBtn1").click(function () { 105 | $('#lcm').hide(); 106 | var myCahrt1 = echarts.init(document.getElementById('LineCharts')); 107 | LineOption.title.text="土地利用类型折线图" ; 108 | $('#LineCharts').css({"z-index":'2'}); 109 | $('#LineCharts').show(); 110 | myCahrt1.setOption(LineOption); 111 | 112 | }); 113 | $("#LBtn2").click(); 114 | }); 115 | -------------------------------------------------------------------------------- /js/initPie.js: -------------------------------------------------------------------------------- 1 | var PieOption = { 2 | backgroundColor: 'rgba(0,0,0,0)', 3 | title: { 4 | text: 'Customized Pie', 5 | left: 'center', 6 | top: 20, 7 | textStyle: { 8 | color: '#ccc' 9 | } 10 | }, 11 | toolbox : { 12 | show : true, 13 | iconStyle : { 14 | bordercolor : '#c23531' 15 | }, 16 | feature:{ 17 | saveAsImage : {show : true}, 18 | myCloseTool: { 19 | show: true, 20 | title: '关闭', 21 | icon: 'M512.001 15.678C237.414 15.678 14.82 238.273 14.82 512.86S237.414 1010.04 512 1010.04s497.18-222.593 497.18-497.18S786.589 15.678 512.002 15.678z m213.211 645.937c17.798 17.803 17.798 46.657 0 64.456-17.798 17.797-46.658 17.797-64.456 0L512.001 577.315 363.241 726.07c-17.799 17.797-46.652 17.797-64.45 0-17.804-17.799-17.804-46.653 0-64.456L447.545 512.86 298.79 364.104c-17.803-17.798-17.803-46.657 0-64.455 17.799-17.798 46.652-17.798 64.45 0l148.761 148.755 148.755-148.755c17.798-17.798 46.658-17.798 64.456 0 17.798 17.798 17.798 46.657 0 64.455L576.456 512.86l148.756 148.755z m0 0', 22 | onclick: function () { 23 | $('#PieChart1').hide(); 24 | $('#PieChart1').css({"z-index":"1"}); 25 | $('#PieChart2').hide(); 26 | $('#PieChart2').css({"z-index":"1"}); 27 | } 28 | } 29 | } 30 | }, 31 | tooltip : { 32 | trigger: 'item', 33 | formatter: "{a}
{b} : {c} ({d}%)" 34 | }, 35 | 36 | visualMap: { 37 | show: false, 38 | min: 80, 39 | max: 600, 40 | inRange: { 41 | colorLightness: [0, 1] 42 | } 43 | }, 44 | series : [ 45 | { 46 | name:'访问来源', 47 | type:'pie', 48 | radius : '55%', 49 | center: ['50%', '50%'], 50 | data:[ 51 | {value:335, name:'A'}, 52 | {value:310, name:'B'}, 53 | {value:274, name:'C'}, 54 | {value:235, name:'D'}, 55 | {value:400, name:'E'} 56 | ].sort(function (a, b) { return a.value - b.value; }), 57 | roseType: 'radius', 58 | label: { 59 | normal: { 60 | textStyle: { 61 | color: 'rgba(255, 255, 255, 1.0)' 62 | } 63 | } 64 | }, 65 | labelLine: { 66 | normal: { 67 | lineStyle: { 68 | color: 'rgba(255, 255, 255, 1.0)' 69 | }, 70 | smooth: 0.2, 71 | length: 10, 72 | length2: 20 73 | } 74 | }, 75 | itemStyle: { 76 | normal: { 77 | color: '#c23531', 78 | shadowBlur: 200, 79 | shadowColor: 'rgba(0, 0, 0, 0.5)' 80 | } 81 | }, 82 | 83 | animationType: 'scale', 84 | animationEasing: 'elasticOut', 85 | animationDelay: function (idx) { 86 | return Math.random() * 200; 87 | } 88 | } 89 | ] 90 | }; 91 | $(document).ready(function () { 92 | $('#pie').click(function () { 93 | $('#pcm').slideToggle("fast"); 94 | }).mouseenter(function () { 95 | $('#pie').css("background-color","#595959"); 96 | $('#pcm').slideDown("fast"); 97 | }).mouseleave(function () { 98 | $('#pie').css("background-color","#0000"); 99 | $('#pcm').mouseleave(function () { 100 | $('#pcm').slideUp("fast"); 101 | }); 102 | }); 103 | $('#PBtn1').click(function () { 104 | $('#pcm').hide(); 105 | var myChart1 = echarts.init(document.getElementById('PieChart1')); 106 | PieOption.title.text="电力设施类型饼状图"; 107 | $('#PieChart1').css({"z-index":'2'}); 108 | $('#PieChart1').show(); 109 | myChart1.setOption(PieOption); 110 | 111 | }); 112 | $("#PBtn2").click (function () { 113 | $('#pcm').hide(); 114 | var myChart2 = echarts.init(document.getElementById('PieChart2')); 115 | PieOption.title.text="土地利用类型饼状图"; 116 | $('#PieChart2').css({"z-index":'2'}); 117 | $('#PieChart2').show(); 118 | myChart2.setOption(PieOption); 119 | }); 120 | }); 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /js/initScatter.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | $(document).ready(function () { 4 | $('#scatter').click(function () { 5 | $('#scm').slideToggle("fast"); 6 | }); 7 | $('#scatter').mouseenter(function () { 8 | $('#scatter').css("background-color","#595959"); 9 | $('#scm').slideDown("fast"); 10 | }).mouseleave(function () { 11 | $('#scatter').css("background-color","#0000"); 12 | $('#scm').mouseleave(function () { 13 | $('#scm').slideUp("fast"); 14 | }); 15 | }); 16 | $('#SBtn1').click(function () { 17 | 18 | }); 19 | }); -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/js/main.js -------------------------------------------------------------------------------- /js/moveDiv.js: -------------------------------------------------------------------------------- 1 | var mouseX, mouseY; 2 | var objX, objY; 3 | var isDowm = false; //是否按下鼠标 4 | function mouseDown(obj, e) { 5 | obj.style.cursor = "move"; 6 | objX = obj.style.left; 7 | objY = obj.style.top; 8 | mouseX = e.clientX; 9 | mouseY = e.clientY; 10 | isDowm = true; 11 | } 12 | function mouseMove(obj,e) { 13 | // var div = document.getElementById("div1"); 14 | var x = e.clientX; 15 | var y = e.clientY; 16 | if (isDowm) { 17 | obj.style.left = parseInt(objX) + parseInt(x) - parseInt(mouseX) + "px"; 18 | obj.style.top = parseInt(objY) + parseInt(y) - parseInt(mouseY) + "px"; 19 | // document.getElementById("span1").innerHTML = "x:" + div.style.top + " " + "y:" + div.style.left; 20 | } 21 | } 22 | function mouseUp(obj,e) { 23 | if (isDowm) { 24 | var x = e.clientX; 25 | var y = e.clientY; 26 | // var div = document.getElementById("div1"); 27 | obj.style.left = (parseInt(x) - parseInt(mouseX) + parseInt(objX)) + "px"; 28 | obj.style.top = (parseInt(y) - parseInt(mouseY) + parseInt(objY)) + "px"; 29 | // document.getElementById("span2").innerHTML = "x:" + div.style.top + " " + "y:" + div.style.left; 30 | mouseX = x; 31 | rewmouseY = y; 32 | obj.style.cursor = "default"; 33 | isDowm = false; 34 | } 35 | } -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- 1 | // Avoid `console` errors in browsers that lack a console. 2 | (function() { 3 | var method; 4 | var noop = function () {}; 5 | var methods = [ 6 | 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 7 | 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 8 | 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', 9 | 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' 10 | ]; 11 | var length = methods.length; 12 | var console = (window.console = window.console || {}); 13 | 14 | while (length--) { 15 | method = methods[length]; 16 | 17 | // Only stub undefined methods. 18 | if (!console[method]) { 19 | console[method] = noop; 20 | } 21 | } 22 | }()); 23 | 24 | // Place any jQuery/helper plugins in here. 25 | -------------------------------------------------------------------------------- /js/powerRectangleWorkers.js: -------------------------------------------------------------------------------- 1 | function createInstances(data) { 2 | var instances = []; 3 | for(var i = 0;i < data.length;i++){ 4 | instances.push(new Cesium.GeometryInstance({ 5 | geometry: new Cesium.PolylineGeometry({ 6 | positions : Cesium.Cartesian3.fromDegreesArray([data[i].lng1,data[i].lat1, data[i].lng1,data[i].lat2, 7 | data[i].lng2,data[i].lat2, data[i].lng2,data[i].lat1, data[i].lng1,data[i].lat1]), 8 | width : 2.0 9 | }), 10 | id : { 11 | name : type, 12 | type : str, 13 | confidence : data[i].confidence, 14 | longitude : (data[i].lng1+data[i].lng2)/2, 15 | latitude : (data[i].lat1+data[i].lat2)/2 16 | }, 17 | vertexFormat : Cesium.PolylineMaterialAppearance.VERTEX_FORMAT 18 | })); 19 | } 20 | postMessage(instances); 21 | } 22 | 23 | onmessage=function(e){ 24 | createInstances(e.data); 25 | }; 26 | -------------------------------------------------------------------------------- /js/showpng.js: -------------------------------------------------------------------------------- 1 | function showPic(e,sUrl){ 2 | var x,y; 3 | x = e.clientX; 4 | y = e.clientY; 5 | document.getElementById("Layer1").style.left = x+2+'px'; 6 | document.getElementById("Layer1").style.top = y+2+'px'; 7 | document.getElementById("Layer1").innerHTML = ""; 8 | document.getElementById("Layer1").style.display = ""; 9 | } 10 | function hiddenPic(){ 11 | document.getElementById("Layer1").innerHTML = ""; 12 | document.getElementById("Layer1").style.display = "none"; 13 | } -------------------------------------------------------------------------------- /json/123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/json/123 -------------------------------------------------------------------------------- /json/consumofenergy.json: -------------------------------------------------------------------------------- 1 | { 2 | "RECORDS":[ 3 | { 4 | "id":"生活热力消费量(万百万千焦)", 5 | "y15":93841, 6 | "y14":86482, 7 | "y13":81472, 8 | "y12":77608, 9 | "y11":70044, 10 | "y10":67410, 11 | "y09":67000, 12 | "y08":62765, 13 | "y07":57689 14 | }, 15 | { 16 | "id":"生活煤炭消费量(万吨)", 17 | "y15":9347, 18 | "y14":9253, 19 | "y13":9290, 20 | "y12":9253, 21 | "y11":9212, 22 | "y10":9159, 23 | "y09":9122, 24 | "y08":9148, 25 | "y07":9761 26 | }, 27 | { 28 | "id":"生活电力消费量(亿千瓦小时)", 29 | "y15":7565, 30 | "y14":7176, 31 | "y13":6989, 32 | "y12":6219, 33 | "y11":5620, 34 | "y10":5125, 35 | "y09":4872, 36 | "y08":4396, 37 | "y07":4063 38 | }, 39 | { 40 | "id":"生活能源消费量(万吨标准煤)", 41 | "y15":50099, 42 | "y14":47212, 43 | "y13":45531, 44 | "y12":42306, 45 | "y11":39584, 46 | "y10":36470, 47 | "y09":33843, 48 | "y08":31898, 49 | "y07":30814 50 | } 51 | ] 52 | } -------------------------------------------------------------------------------- /json/dayofpower.json: -------------------------------------------------------------------------------- 1 | { 2 | "RECORDS":[ 3 | { 4 | "id":"平均每天天然气消费量", 5 | "y15":5.30, 6 | "y14":5.10, 7 | "y13":4.70, 8 | "y12":4.10, 9 | "y11":3.70, 10 | "y10":3.00, 11 | "y09":2.50, 12 | "y08":2.20, 13 | "y07":1.90 14 | }, 15 | { 16 | "id":"平均每天汽油消费量", 17 | "y15":31.10, 18 | "y14":26.80, 19 | "y13":25.70, 20 | "y12":22.30, 21 | "y11":20.80, 22 | "y10":19.10, 23 | "y09":16.90, 24 | "y08":16.80, 25 | "y07":15.10 26 | }, 27 | { 28 | "id":"平均每天煤炭消费量", 29 | "y15":1087.70, 30 | "y14":1127.70, 31 | "y13":1162.80, 32 | "y12":1124.90, 33 | "y11":1065.60, 34 | "y10":956.20, 35 | "y09":810.50, 36 | "y08":768.00, 37 | "y07":747.20 38 | }, 39 | { 40 | "id":"平均每天电力消费量", 41 | "y15":159.00, 42 | "y14":154.50, 43 | "y13":148.50, 44 | "y12":136.00, 45 | "y11":128.80, 46 | "y10":114.90, 47 | "y09":101.50, 48 | "y08":94.40, 49 | "y07":89.60 50 | }, 51 | { 52 | "id":"平均每天能源消费量", 53 | "y15":1177.80, 54 | "y14":1166.60, 55 | "y13":1142.20, 56 | "y12":1098.70, 57 | "y11":1060.40, 58 | "y10":988.10, 59 | "y09":840.10, 60 | "y08":796.30, 61 | "y07":768.50 62 | } 63 | ] 64 | } -------------------------------------------------------------------------------- /json/ecofpower.json: -------------------------------------------------------------------------------- 1 | { 2 | "RECORDS":[ 3 | { 4 | "id":"电力消费弹性系数", 5 | "y14":0.55, 6 | "y13":1.14, 7 | "y12":0.75, 8 | "y11":1.27, 9 | "y10":1.25, 10 | "y09":0.77, 11 | "y08":0.58, 12 | "y07":1.01 13 | }, 14 | { 15 | "id":"电力生产弹性系数", 16 | "y14":0.55, 17 | "y13":1.14, 18 | "y12":0.73, 19 | "y11":1.26, 20 | "y10":1.25, 21 | "y09":0.76, 22 | "y08":0.58, 23 | "y07":1.02 24 | }, 25 | { 26 | "id":"能源消费弹性系数", 27 | "y14":0.29, 28 | "y13":0.47, 29 | "y12":0.49, 30 | "y11":0.77, 31 | "y10":0.69, 32 | "y09":0.51, 33 | "y08":0.30, 34 | "y07":0.61 35 | }, 36 | { 37 | "id":"能源生产弹性系数", 38 | "y14":0.12, 39 | "y13":0.28, 40 | "y12":0.40, 41 | "y11":0.95, 42 | "y10":0.86, 43 | "y09":0.33, 44 | "y08":0.52, 45 | "y07":0.56 46 | } 47 | ] 48 | } -------------------------------------------------------------------------------- /json/elescale.json: -------------------------------------------------------------------------------- 1 | { 2 | "RECORDS":[ 3 | { 4 | "id":"核电生产电力量", 5 | "y15":1707.9, 6 | "y14":1325.4, 7 | "y13":1116.1, 8 | "y12":973.9, 9 | "y11":863.5, 10 | "y10":738.8 11 | }, 12 | { 13 | "id":"水电生产电力量", 14 | "y15":11302.7, 15 | "y14":10643.4, 16 | "y13":9202.9, 17 | "y12":8721.1, 18 | "y11":6989.5, 19 | "y10":7221.7 20 | }, 21 | { 22 | "id":"火电生产电力量", 23 | "y15":42841.9, 24 | "y14":42686.5, 25 | "y13":42470.1, 26 | "y12":38928.1, 27 | "y11":38337.0, 28 | "y10":33319.3 29 | }, 30 | { 31 | "id":"风电生产电力量", 32 | "y15":1857.7, 33 | "y14":1560.8, 34 | "y13":1412.0, 35 | "y12":959.8, 36 | "y11":703.3, 37 | "y10":446.2 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /json/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/json/json -------------------------------------------------------------------------------- /json/mytest.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | {"imgURL":"./img/ziqi.jpg", 4 | "lng1":12.3722362518, 5 | "lat1":44.0973654023, 6 | "lng2":12.3725028378, 7 | "lat2":44.0968612796}, 8 | {"imgURL":"./img/ziqi1.jpg", 9 | "lng1":12.3722362518, 10 | "lat1":44.0973654023, 11 | "lng2":12.3725028378, 12 | "lat2":44.0968612796}, 13 | {"imgURL":"./img/ziqi2.jpg", 14 | "lng1":12.3722362518, 15 | "lat1":44.0973654023, 16 | "lng2":12.3725028378, 17 | "lat2":44.0968612796}, 18 | {"imgURL":"./img/ziqi3.jpg", 19 | "lng1":12.3722362518, 20 | "lat1":44.0973654023, 21 | "lng2":12.3725028378, 22 | "lat2":44.0968612796}, 23 | {"imgURL":"./img/ziqi4.jpg", 24 | "lng1":12.3722362518, 25 | "lat1":44.0973654023, 26 | "lng2":12.3725028378, 27 | "lat2":44.0968612796}, 28 | {"imgURL":"./img/ziqi5.jpg", 29 | "lng1":12.3722362518, 30 | "lat1":44.0973654023, 31 | "lng2":12.3725028378, 32 | "lat2":44.0968612796}, 33 | {"imgURL":"./img/ziqi1.jpg", 34 | "lng1":12.3722362518, 35 | "lat1":44.0973654023, 36 | "lng2":12.3725028378, 37 | "lat2":44.0968612796}, 38 | {"imgURL":"./img/ziqi2.jpg", 39 | "lng1":12.3722362518, 40 | "lat1":44.0973654023, 41 | "lng2":12.3725028378, 42 | "lat2":44.0968612796}, 43 | {"imgURL":"./img/ziqi3.jpg", 44 | 45 | "lng1":12.3722362518, 46 | "lat1":44.0973654023, 47 | "lng2":12.3725028378, 48 | "lat2":44.0968612796}, 49 | {"imgURL":"./img/ziqi5.jpg", 50 | "lng1":12.3722362518, 51 | "lat1":44.0973654023, 52 | "lng2":12.3725028378, 53 | "lat2":44.0968612796}, 54 | {"imgURL":"./img/ziqi4.jpg", 55 | "lng1":12.3722362518, 56 | "lat1":44.0973654023, 57 | "lng2":12.3725028378, 58 | "lat2":44.0968612796}, 59 | {"imgURL":"./img/ziqi.jpg", 60 | "lng1":12.3722362518, 61 | "lat1":44.0973654023, 62 | "lng2":12.3725028378, 63 | "lat2":44.0968612796}, 64 | {"imgURL":"./img/ziqi1.jpg", 65 | "lng1":12.3722362518, 66 | "lat1":44.0973654023, 67 | "lng2":12.3725028378, 68 | "lat2":44.0968612796}, 69 | {"imgURL":"./img/ziqi2.jpg", 70 | "lng1":12.3722362518, 71 | "lat1":44.0973654023, 72 | "lng2":12.3725028378, 73 | "lat2":44.0968612796}, 74 | {"imgURL":"./img/ziqi3.jpg", 75 | "lng1":12.3722362518, 76 | "lat1":44.0973654023, 77 | "lng2":12.3725028378, 78 | "lat2":44.0968612796}, 79 | {"imgURL":"./img/ziqi4.jpg", 80 | "lng1":12.3722362518, 81 | "lat1":44.0973654023, 82 | "lng2":12.3725028378, 83 | "lat2":44.0968612796}, 84 | {"imgURL":"./img/ziqi.jpg", 85 | "lng1":12.3722362518, 86 | "lat1":44.0973654023, 87 | "lng2":44.0968612796, 88 | "lat2":12.3725028378} 89 | ] 90 | } 91 | -------------------------------------------------------------------------------- /json/perpower.json: -------------------------------------------------------------------------------- 1 | { 2 | "RECORDS":[ 3 | { 4 | "id":"人均天然气生活消费量(立方米)", 5 | "y15":26.2, 6 | "y14":25.1, 7 | "y13":23.8, 8 | "y12":21.3, 9 | "y11":19.7, 10 | "y10":17.0, 11 | "y09":13.3, 12 | "y08":12.8, 13 | "y07":10.9 14 | }, 15 | { 16 | "id":"人均煤炭生活消费量(千克)", 17 | "y15":68.2, 18 | "y14":67.8, 19 | "y13":68.0, 20 | "y12":69.0, 21 | "y11":68.5, 22 | "y10":68.5, 23 | "y09":68.5, 24 | "y08":69.1, 25 | "y07":74.1 26 | }, 27 | { 28 | "id":"人均电力生活消费量(千瓦小时)", 29 | "y15":551.7, 30 | "y14":526.0, 31 | "y13":515.0, 32 | "y12":460.4, 33 | "y11":418.1, 34 | "y10":383.1, 35 | "y09":366.0, 36 | "y08":331.9, 37 | "y07":308.3 38 | }, 39 | { 40 | "id":"人均能源生活消费量(千克标准煤)", 41 | "y15":365.4, 42 | "y14":346.1, 43 | "y13":335.0, 44 | "y12":313.0, 45 | "y11":294.0, 46 | "y10":273.0, 47 | "y09":264.0, 48 | "y08":254.0, 49 | "y07":250.0 50 | } 51 | ] 52 | } -------------------------------------------------------------------------------- /json/powerIdentification.json: -------------------------------------------------------------------------------- 1 | { 2 | "tower":[ 3 | { 4 | "img_id":"I50G077044_88", 5 | "lng1":116.732707759, 6 | "lat1":32.7943697566, 7 | "lng2":116.732935558, 8 | "lat2":32.7940860925, 9 | "confidence":0.997581 10 | }, 11 | { 12 | "img_id":"I50G077044_88", 13 | "lng1":116.734605777, 14 | "lat1":32.796739454, 15 | "lng2":116.734796783, 16 | "lat2":32.7964827706, 17 | "confidence":0.989687 18 | }, 19 | { 20 | "img_id":"I50G076043_27", 21 | "lng1":116.635722023, 22 | "lat1":32.8436661592, 23 | "lng2":116.636177888, 24 | "lat2":32.8431645908, 25 | "confidence":1 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /json/powerSample.json: -------------------------------------------------------------------------------- 1 | { 2 | "tower":[ 3 | { 4 | "img_id" : "I50G077043_12_rotated_0.jpg", 5 | "lng1" : 100, 6 | "lat1" : 50, 7 | "lng2" : 110, 8 | "lat2" : 30, 9 | "confidence" : "70%" 10 | }, 11 | { 12 | "img_id" : "I50G077043_12_rotated_0.jpg", 13 | "lng1" : 120, 14 | "lat1" : 50, 15 | "lng2" : 130, 16 | "lat2" : 30, 17 | "confidence" : "85%" 18 | } 19 | ], 20 | "hydropower":[ 21 | { 22 | "img_id" : "I50G077043_12_rotated_0.jpg", 23 | "lng1" : 140, 24 | "lat1" : 50, 25 | "lng2" : 150, 26 | "lat2" : 30, 27 | "confidence" : "65%" 28 | } 29 | ], 30 | "thermalpower":[ 31 | { 32 | "img_id" : "I50G077043_12_rotated_0.jpg", 33 | "lng1" : 90, 34 | "lat1" : 50, 35 | "lng2" : 100, 36 | "lat2" : 30, 37 | "confidence" : "65%" 38 | } 39 | ], 40 | "solarpower":[ 41 | { 42 | "img_id" : "I50G077043_12_rotated_0.jpg", 43 | "lng1" : 140, 44 | "lat1" : 30, 45 | "lng2" : 150, 46 | "lat2" : 10, 47 | "confidence" : "65%" 48 | } 49 | ], 50 | "transformer":[ 51 | { 52 | "img_id" : "I50G077043_12_rotated_0.jpg", 53 | "lng1" : 140, 54 | "lat1" : 40, 55 | "lng2" : 150, 56 | "lat2" : 20, 57 | "confidence" : "65%" 58 | } 59 | ], 60 | "windpower":[ 61 | { 62 | "img_id" : "I50G077043_12_rotated_0.jpg", 63 | "lng1" : 140, 64 | "lat1" : 60, 65 | "lng2" : 150, 66 | "lat2" : 40, 67 | "confidence" : "65%" 68 | } 69 | ] 70 | } 71 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | 3 | # Allow crawling of all content 4 | 5 | 6 | -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "icons": [{ 3 | "src": "icon.png", 4 | "sizes": "192x192", 5 | "type": "image/png" 6 | }], 7 | "start_url": "/123" 8 | } 9 | -------------------------------------------------------------------------------- /tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/tile-wide.png -------------------------------------------------------------------------------- /tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUNYunZeng/webpower/afc93b8766a7d181542fdac039863763b32b40c0/tile.png --------------------------------------------------------------------------------