├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── commitlint.yml │ └── release-to-master.yml ├── .gitignore ├── .htmlvalidate.json ├── .husky ├── commit-msg ├── post-merge └── post-rewrite ├── .jscodeshift.json ├── .stylelintrc.json ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── addlayer-template.html ├── addlayer.js ├── browserCheck.js ├── commitlint.config.js ├── config └── settings.json ├── conformance_config.textproto ├── docs ├── Makefile ├── _static │ └── css │ │ └── overrides.css ├── conf.py ├── contributing.rst ├── cookbook │ ├── addlayerpage │ │ └── index.rst │ ├── audionotification │ │ ├── index.rst │ │ └── src │ │ │ ├── audioalertplugin.js │ │ │ ├── settings.json │ │ │ └── sounds │ │ │ └── cowbell.wav │ ├── logging │ │ ├── images │ │ │ ├── LogEntries.png │ │ │ ├── SetupLogLevels.png │ │ │ └── SupportMenuViewLog.png │ │ ├── index.rst │ │ └── src │ │ │ └── cookbook-logging.js │ ├── metrics │ │ ├── images │ │ │ ├── capabilitiesdlg_cookbook.png │ │ │ ├── capabilitiesdlg_orig.png │ │ │ └── supportmenudlg.png │ │ ├── index.rst │ │ └── src │ │ │ ├── cookbookmetrics.js │ │ │ ├── cookbookmetricsplugin.js │ │ │ └── index.js │ ├── osm │ │ └── index.rst │ ├── overview.rst │ ├── pelias │ │ └── index.rst │ ├── pluginindex │ │ └── index.rst │ ├── submenu │ │ ├── images │ │ │ └── submenuscreenshot.png │ │ ├── index.rst │ │ └── src │ │ │ └── cookbook-submenu.js │ └── tracks │ │ ├── images │ │ └── TracksLayer.png │ │ ├── index.rst │ │ └── src │ │ ├── tracksplugin_coordinates.js │ │ └── tracksplugin_features.js ├── getting_started.rst ├── guides │ ├── angular_module_guide │ │ ├── index.rst │ │ └── src │ │ │ ├── map.js │ │ │ └── map_shim.js │ ├── app_code_guide │ │ └── index.rst │ ├── app_guide.rst │ ├── app_index_guide │ │ └── index.rst │ ├── app_package_guide │ │ ├── index.rst │ │ └── package │ │ │ ├── build.json │ │ │ └── directories.json │ ├── deployment_guide.rst │ ├── es6_class_guide │ │ ├── index.rst │ │ └── src │ │ │ ├── closureclass.js │ │ │ └── es6class.js │ ├── es6_guide.rst │ ├── goog_module_guide │ │ └── index.rst │ ├── goog_module_to_es6_guide │ │ ├── index.rst │ │ └── src │ │ │ └── os │ │ │ ├── index.js │ │ │ └── myclass.js │ ├── plugin_file_type_guide │ │ ├── .gitignore │ │ ├── content_type.rst │ │ ├── descriptor.rst │ │ ├── import_ui.rst │ │ ├── index.rst │ │ ├── launcher.rst │ │ ├── layer_config.rst │ │ ├── parser.rst │ │ ├── plugin.rst │ │ ├── provider.rst │ │ ├── src │ │ │ └── plugin │ │ │ │ └── georss │ │ │ │ ├── georss.js │ │ │ │ ├── georssdescriptor.js │ │ │ │ ├── georssimport.js │ │ │ │ ├── georssimportui-descriptor.js │ │ │ │ ├── georssimportui-launcher.js │ │ │ │ ├── georssimportui.js │ │ │ │ ├── georsslayerconfig-time_support-auto.js │ │ │ │ ├── georsslayerconfig-time_support-explicit.js │ │ │ │ ├── georsslayerconfig.js │ │ │ │ ├── georssparser.js │ │ │ │ ├── georssplugin-content_type.js │ │ │ │ ├── georssplugin-descriptor.js │ │ │ │ ├── georssplugin-launcher.js │ │ │ │ ├── georssplugin-layer_config.js │ │ │ │ ├── georssplugin-plugin.js │ │ │ │ ├── georssplugin-provider.js │ │ │ │ ├── georssprovider.js │ │ │ │ └── mime.js │ │ ├── test │ │ │ └── plugin │ │ │ │ └── georss │ │ │ │ ├── georssdescriptor.test.js │ │ │ │ ├── georssimportui.test.js │ │ │ │ ├── georsslayerconfig-importer.test.js │ │ │ │ ├── georsslayerconfig.test.js │ │ │ │ ├── georssparser.test.js │ │ │ │ ├── georssplugin.test.js │ │ │ │ ├── georssprovider.test.js │ │ │ │ └── mime.test.js │ │ ├── time_support.rst │ │ └── views │ │ │ └── plugin │ │ │ └── georss │ │ │ └── georssimport.html │ ├── plugin_guide.rst │ ├── plugin_server_guide │ │ ├── images │ │ │ ├── addserverui.png │ │ │ ├── addtileserver.png │ │ │ ├── layernodes.png │ │ │ └── serveradddata.png │ │ ├── index.rst │ │ ├── parsing.rst │ │ ├── plugin.rst │ │ ├── provider.rst │ │ ├── server_ui.rst │ │ ├── src │ │ │ └── plugin │ │ │ │ └── tileserver │ │ │ │ ├── index.js │ │ │ │ ├── mime.js │ │ │ │ ├── tileserver-parsing.js │ │ │ │ ├── tileserver-provider.js │ │ │ │ ├── tileserverimport-server_ui-1.js │ │ │ │ ├── tileserverimport-server_ui-2.js │ │ │ │ ├── tileserverplugin-parsing.js │ │ │ │ ├── tileserverplugin-plugin.js │ │ │ │ ├── tileserverplugin-provider.js │ │ │ │ ├── tileserverplugin-server_ui-1.js │ │ │ │ ├── tileserverplugin-server_ui-2.js │ │ │ │ └── tileserverplugin-server_ui-3.js │ │ └── test │ │ │ └── plugin │ │ │ └── tileserver │ │ │ ├── mime.test.js │ │ │ ├── tileserver-parsing.test.js │ │ │ ├── tileserver-provider.test.js │ │ │ ├── tileserverplugin-plugin.test.js │ │ │ └── tileserverplugin-server_ui.test.js │ ├── settings_guide.rst │ └── unit_test_module_guide │ │ ├── index.rst │ │ └── src │ │ └── example.test.js ├── index.rst └── windows_development.rst ├── externs ├── Cesium.externs.js ├── angular-os.js ├── angular.externs.js ├── backbone.js ├── chardetng.externs.js ├── closure-compiler.js ├── crossfilter.externs.js ├── d3-3.4.1.js ├── electron.externs.js ├── geomag.externs.js ├── gif.externs.js ├── html2canvas.externs.js ├── jquery-plugins.js ├── jschardet.externs.js ├── jsts.externs.js ├── markdownit.externs.js ├── modernizr.externs.js ├── moment.js ├── oboe.externs.js ├── ol-mapbox-style.js ├── os.externs.js ├── osasm.externs.js ├── papaparse.externs.js ├── platform.externs.js ├── plugin.externs.js ├── pluralize.externs.js ├── resizesensor.externs.js ├── saveSvgAsPng.js ├── select2.js ├── slick.grid.externs.js ├── suncalc.externs.js ├── tui-editor.externs.js ├── underscore.js ├── xml-lexer.externs.js └── zip-js.externs.js ├── fix-html-validate.sh ├── images ├── Mouse.png ├── MouseLeft.png ├── MouseMiddle.png ├── MouseRight.png ├── brand │ └── favicon │ │ └── opensphere.ico ├── features-base.png ├── furley_bg.png ├── icons │ ├── kml │ │ ├── paddle │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── a.png │ │ │ ├── b.png │ │ │ ├── blu-blank.png │ │ │ ├── blu-circle.png │ │ │ ├── blu-diamond.png │ │ │ ├── blu-square.png │ │ │ ├── blu-stars.png │ │ │ ├── c.png │ │ │ ├── d.png │ │ │ ├── e.png │ │ │ ├── f.png │ │ │ ├── g.png │ │ │ ├── grn-blank.png │ │ │ ├── grn-circle.png │ │ │ ├── grn-diamond.png │ │ │ ├── grn-square.png │ │ │ ├── grn-stars.png │ │ │ ├── h.png │ │ │ ├── i.png │ │ │ ├── j.png │ │ │ ├── k.png │ │ │ ├── l.png │ │ │ ├── ltblu-blank.png │ │ │ ├── ltblu-circle.png │ │ │ ├── ltblu-diamond.png │ │ │ ├── ltblu-square.png │ │ │ ├── ltblu-stars.png │ │ │ ├── m.png │ │ │ ├── n.png │ │ │ ├── o.png │ │ │ ├── p.png │ │ │ ├── pink-blank.png │ │ │ ├── pink-circle.png │ │ │ ├── pink-diamond.png │ │ │ ├── pink-square.png │ │ │ ├── pink-stars.png │ │ │ ├── purple-circle.png │ │ │ ├── purple-diamond.png │ │ │ ├── purple-square.png │ │ │ ├── purple-stars.png │ │ │ ├── q.png │ │ │ ├── r.png │ │ │ ├── red-circle.png │ │ │ ├── red-diamond.png │ │ │ ├── red-square.png │ │ │ ├── red-stars.png │ │ │ ├── s.png │ │ │ ├── t.png │ │ │ ├── u.png │ │ │ ├── v.png │ │ │ ├── w.png │ │ │ ├── wht-blank.png │ │ │ ├── wht-circle.png │ │ │ ├── wht-diamond.png │ │ │ ├── wht-square.png │ │ │ ├── wht-stars.png │ │ │ ├── x.png │ │ │ ├── y.png │ │ │ ├── ylw-circle.png │ │ │ ├── ylw-diamond.png │ │ │ ├── ylw-square.png │ │ │ ├── ylw-stars.png │ │ │ └── z.png │ │ ├── pushpin │ │ │ ├── blue-pushpin.png │ │ │ ├── grn-pushpin.png │ │ │ ├── ltblu-pushpin.png │ │ │ ├── pink-pushpin.png │ │ │ ├── purple-pushpin.png │ │ │ ├── red-pushpin.png │ │ │ ├── wht-pushpin.png │ │ │ └── ylw-pushpin.png │ │ └── shapes │ │ │ ├── airports.png │ │ │ ├── airports_white.png │ │ │ ├── arrow-reverse.png │ │ │ ├── arrow.png │ │ │ ├── arts.png │ │ │ ├── bars.png │ │ │ ├── bus.png │ │ │ ├── cabs.png │ │ │ ├── camera.png │ │ │ ├── campfire.png │ │ │ ├── campground.png │ │ │ ├── caution.png │ │ │ ├── coffee.png │ │ │ ├── convenience.png │ │ │ ├── cross-hairs.png │ │ │ ├── cycling.png │ │ │ ├── dining.png │ │ │ ├── dollar.png │ │ │ ├── donut.png │ │ │ ├── earthquake.png │ │ │ ├── electronics.png │ │ │ ├── euro.png │ │ │ ├── falling_rocks.png │ │ │ ├── ferry.png │ │ │ ├── firedept.png │ │ │ ├── fishing.png │ │ │ ├── flag.png │ │ │ ├── forbidden.png │ │ │ ├── gas_stations.png │ │ │ ├── golf.png │ │ │ ├── grocery.png │ │ │ ├── heliport.png │ │ │ ├── hiker.png │ │ │ ├── homegardenbusiness.png │ │ │ ├── horsebackriding.png │ │ │ ├── hospitals.png │ │ │ ├── info-i.png │ │ │ ├── info.png │ │ │ ├── info_circle.png │ │ │ ├── lodging.png │ │ │ ├── man.png │ │ │ ├── marina.png │ │ │ ├── mechanic.png │ │ │ ├── motorcycling.png │ │ │ ├── movies.png │ │ │ ├── open-diamond.png │ │ │ ├── parking_lot.png │ │ │ ├── parks.png │ │ │ ├── partly_cloudy.png │ │ │ ├── phone.png │ │ │ ├── picnic.png │ │ │ ├── placemark_circle.png │ │ │ ├── placemark_square.png │ │ │ ├── play.png │ │ │ ├── poi.png │ │ │ ├── police.png │ │ │ ├── polygon.png │ │ │ ├── post_office.png │ │ │ ├── rail.png │ │ │ ├── rainy.png │ │ │ ├── ranger_station.png │ │ │ ├── realestate.png │ │ │ ├── sailing.png │ │ │ ├── salon.png │ │ │ ├── shaded_dot.png │ │ │ ├── shopping.png │ │ │ ├── ski.png │ │ │ ├── snack_bar.png │ │ │ ├── snowflake_simple.png │ │ │ ├── square.png │ │ │ ├── star.png │ │ │ ├── subway.png │ │ │ ├── sunny.png │ │ │ ├── swimming.png │ │ │ ├── target.png │ │ │ ├── toilets.png │ │ │ ├── trail.png │ │ │ ├── tram.png │ │ │ ├── triangle.png │ │ │ ├── truck.png │ │ │ ├── volcano.png │ │ │ ├── water.png │ │ │ ├── webcam.png │ │ │ ├── wheel_chair_accessible.png │ │ │ ├── woman.png │ │ │ └── yen.png │ ├── maki │ │ └── v1 │ │ │ ├── aerialway-12.png │ │ │ ├── aerialway-12@2x.png │ │ │ ├── aerialway-18.png │ │ │ ├── aerialway-18@2x.png │ │ │ ├── aerialway-24.png │ │ │ ├── aerialway-24@2x.png │ │ │ ├── airfield-12.png │ │ │ ├── airfield-12@2x.png │ │ │ ├── airfield-18.png │ │ │ ├── airfield-18@2x.png │ │ │ ├── airfield-24.png │ │ │ ├── airfield-24@2x.png │ │ │ ├── airport-12.png │ │ │ ├── airport-12@2x.png │ │ │ ├── airport-18.png │ │ │ ├── airport-18@2x.png │ │ │ ├── airport-24.png │ │ │ ├── airport-24@2x.png │ │ │ ├── alcohol-shop-12.png │ │ │ ├── alcohol-shop-12@2x.png │ │ │ ├── alcohol-shop-18.png │ │ │ ├── alcohol-shop-18@2x.png │ │ │ ├── alcohol-shop-24.png │ │ │ ├── alcohol-shop-24@2x.png │ │ │ ├── america-football-12.png │ │ │ ├── america-football-12@2x.png │ │ │ ├── america-football-18.png │ │ │ ├── america-football-18@2x.png │ │ │ ├── america-football-24.png │ │ │ ├── america-football-24@2x.png │ │ │ ├── art-gallery-12.png │ │ │ ├── art-gallery-12@2x.png │ │ │ ├── art-gallery-18.png │ │ │ ├── art-gallery-18@2x.png │ │ │ ├── art-gallery-24.png │ │ │ ├── art-gallery-24@2x.png │ │ │ ├── bakery-12.png │ │ │ ├── bakery-12@2x.png │ │ │ ├── bakery-18.png │ │ │ ├── bakery-18@2x.png │ │ │ ├── bakery-24.png │ │ │ ├── bakery-24@2x.png │ │ │ ├── bank-12.png │ │ │ ├── bank-12@2x.png │ │ │ ├── bank-18.png │ │ │ ├── bank-18@2x.png │ │ │ ├── bank-24.png │ │ │ ├── bank-24@2x.png │ │ │ ├── bar-12.png │ │ │ ├── bar-12@2x.png │ │ │ ├── bar-18.png │ │ │ ├── bar-18@2x.png │ │ │ ├── bar-24.png │ │ │ ├── bar-24@2x.png │ │ │ ├── baseball-12.png │ │ │ ├── baseball-12@2x.png │ │ │ ├── baseball-18.png │ │ │ ├── baseball-18@2x.png │ │ │ ├── baseball-24.png │ │ │ ├── baseball-24@2x.png │ │ │ ├── basketball-12.png │ │ │ ├── basketball-12@2x.png │ │ │ ├── basketball-18.png │ │ │ ├── basketball-18@2x.png │ │ │ ├── basketball-24.png │ │ │ ├── basketball-24@2x.png │ │ │ ├── beer-12.png │ │ │ ├── beer-12@2x.png │ │ │ ├── beer-18.png │ │ │ ├── beer-18@2x.png │ │ │ ├── beer-24.png │ │ │ ├── beer-24@2x.png │ │ │ ├── bicycle-12.png │ │ │ ├── bicycle-12@2x.png │ │ │ ├── bicycle-18.png │ │ │ ├── bicycle-18@2x.png │ │ │ ├── bicycle-24.png │ │ │ ├── bicycle-24@2x.png │ │ │ ├── building-12.png │ │ │ ├── building-12@2x.png │ │ │ ├── building-18.png │ │ │ ├── building-18@2x.png │ │ │ ├── building-24.png │ │ │ ├── building-24@2x.png │ │ │ ├── bus-12.png │ │ │ ├── bus-12@2x.png │ │ │ ├── bus-18.png │ │ │ ├── bus-18@2x.png │ │ │ ├── bus-24.png │ │ │ ├── bus-24@2x.png │ │ │ ├── cafe-12.png │ │ │ ├── cafe-12@2x.png │ │ │ ├── cafe-18.png │ │ │ ├── cafe-18@2x.png │ │ │ ├── cafe-24.png │ │ │ ├── cafe-24@2x.png │ │ │ ├── camera-12.png │ │ │ ├── camera-12@2x.png │ │ │ ├── camera-18.png │ │ │ ├── camera-18@2x.png │ │ │ ├── camera-24.png │ │ │ ├── camera-24@2x.png │ │ │ ├── campsite-12.png │ │ │ ├── campsite-12@2x.png │ │ │ ├── campsite-18.png │ │ │ ├── campsite-18@2x.png │ │ │ ├── campsite-24.png │ │ │ ├── campsite-24@2x.png │ │ │ ├── car-12.png │ │ │ ├── car-12@2x.png │ │ │ ├── car-18.png │ │ │ ├── car-18@2x.png │ │ │ ├── car-24.png │ │ │ ├── car-24@2x.png │ │ │ ├── cemetery-12.png │ │ │ ├── cemetery-12@2x.png │ │ │ ├── cemetery-18.png │ │ │ ├── cemetery-18@2x.png │ │ │ ├── cemetery-24.png │ │ │ ├── cemetery-24@2x.png │ │ │ ├── chemist-12.png │ │ │ ├── chemist-12@2x.png │ │ │ ├── chemist-18.png │ │ │ ├── chemist-18@2x.png │ │ │ ├── chemist-24.png │ │ │ ├── chemist-24@2x.png │ │ │ ├── cinema-12.png │ │ │ ├── cinema-12@2x.png │ │ │ ├── cinema-18.png │ │ │ ├── cinema-18@2x.png │ │ │ ├── cinema-24.png │ │ │ ├── cinema-24@2x.png │ │ │ ├── circle-12.png │ │ │ ├── circle-12@2x.png │ │ │ ├── circle-18.png │ │ │ ├── circle-18@2x.png │ │ │ ├── circle-24.png │ │ │ ├── circle-24@2x.png │ │ │ ├── circle-stroked-12.png │ │ │ ├── circle-stroked-12@2x.png │ │ │ ├── circle-stroked-18.png │ │ │ ├── circle-stroked-18@2x.png │ │ │ ├── circle-stroked-24.png │ │ │ ├── circle-stroked-24@2x.png │ │ │ ├── city-12.png │ │ │ ├── city-12@2x.png │ │ │ ├── city-18.png │ │ │ ├── city-18@2x.png │ │ │ ├── city-24.png │ │ │ ├── city-24@2x.png │ │ │ ├── clothing-store-12.png │ │ │ ├── clothing-store-12@2x.png │ │ │ ├── clothing-store-18.png │ │ │ ├── clothing-store-18@2x.png │ │ │ ├── clothing-store-24.png │ │ │ ├── clothing-store-24@2x.png │ │ │ ├── college-12.png │ │ │ ├── college-12@2x.png │ │ │ ├── college-18.png │ │ │ ├── college-18@2x.png │ │ │ ├── college-24.png │ │ │ ├── college-24@2x.png │ │ │ ├── commercial-12.png │ │ │ ├── commercial-12@2x.png │ │ │ ├── commercial-18.png │ │ │ ├── commercial-18@2x.png │ │ │ ├── commercial-24.png │ │ │ ├── commercial-24@2x.png │ │ │ ├── cricket-12.png │ │ │ ├── cricket-12@2x.png │ │ │ ├── cricket-18.png │ │ │ ├── cricket-18@2x.png │ │ │ ├── cricket-24.png │ │ │ ├── cricket-24@2x.png │ │ │ ├── cross-12.png │ │ │ ├── cross-12@2x.png │ │ │ ├── cross-18.png │ │ │ ├── cross-18@2x.png │ │ │ ├── cross-24.png │ │ │ ├── cross-24@2x.png │ │ │ ├── dam-12.png │ │ │ ├── dam-12@2x.png │ │ │ ├── dam-18.png │ │ │ ├── dam-18@2x.png │ │ │ ├── dam-24.png │ │ │ ├── dam-24@2x.png │ │ │ ├── danger-12.png │ │ │ ├── danger-12@2x.png │ │ │ ├── danger-18.png │ │ │ ├── danger-18@2x.png │ │ │ ├── danger-24.png │ │ │ ├── danger-24@2x.png │ │ │ ├── dentist-12.png │ │ │ ├── dentist-12@2x.png │ │ │ ├── dentist-18.png │ │ │ ├── dentist-18@2x.png │ │ │ ├── dentist-24.png │ │ │ ├── dentist-24@2x.png │ │ │ ├── disability-12.png │ │ │ ├── disability-12@2x.png │ │ │ ├── disability-18.png │ │ │ ├── disability-18@2x.png │ │ │ ├── disability-24.png │ │ │ ├── disability-24@2x.png │ │ │ ├── dog-park-12.png │ │ │ ├── dog-park-12@2x.png │ │ │ ├── dog-park-18.png │ │ │ ├── dog-park-18@2x.png │ │ │ ├── dog-park-24.png │ │ │ ├── dog-park-24@2x.png │ │ │ ├── embassy-12.png │ │ │ ├── embassy-12@2x.png │ │ │ ├── embassy-18.png │ │ │ ├── embassy-18@2x.png │ │ │ ├── embassy-24.png │ │ │ ├── embassy-24@2x.png │ │ │ ├── emergency-telephone-12.png │ │ │ ├── emergency-telephone-12@2x.png │ │ │ ├── emergency-telephone-18.png │ │ │ ├── emergency-telephone-18@2x.png │ │ │ ├── emergency-telephone-24.png │ │ │ ├── emergency-telephone-24@2x.png │ │ │ ├── entrance-12.png │ │ │ ├── entrance-12@2x.png │ │ │ ├── entrance-18.png │ │ │ ├── entrance-18@2x.png │ │ │ ├── entrance-24.png │ │ │ ├── entrance-24@2x.png │ │ │ ├── farm-12.png │ │ │ ├── farm-12@2x.png │ │ │ ├── farm-18.png │ │ │ ├── farm-18@2x.png │ │ │ ├── farm-24.png │ │ │ ├── farm-24@2x.png │ │ │ ├── fast-food-12.png │ │ │ ├── fast-food-12@2x.png │ │ │ ├── fast-food-18.png │ │ │ ├── fast-food-18@2x.png │ │ │ ├── fast-food-24.png │ │ │ ├── fast-food-24@2x.png │ │ │ ├── ferry-12.png │ │ │ ├── ferry-12@2x.png │ │ │ ├── ferry-18.png │ │ │ ├── ferry-18@2x.png │ │ │ ├── ferry-24.png │ │ │ ├── ferry-24@2x.png │ │ │ ├── fire-station-12.png │ │ │ ├── fire-station-12@2x.png │ │ │ ├── fire-station-18.png │ │ │ ├── fire-station-18@2x.png │ │ │ ├── fire-station-24.png │ │ │ ├── fire-station-24@2x.png │ │ │ ├── fuel-12.png │ │ │ ├── fuel-12@2x.png │ │ │ ├── fuel-18.png │ │ │ ├── fuel-18@2x.png │ │ │ ├── fuel-24.png │ │ │ ├── fuel-24@2x.png │ │ │ ├── garden-12.png │ │ │ ├── garden-12@2x.png │ │ │ ├── garden-18.png │ │ │ ├── garden-18@2x.png │ │ │ ├── garden-24.png │ │ │ ├── garden-24@2x.png │ │ │ ├── gift-12.png │ │ │ ├── gift-12@2x.png │ │ │ ├── gift-18.png │ │ │ ├── gift-18@2x.png │ │ │ ├── gift-24.png │ │ │ ├── gift-24@2x.png │ │ │ ├── golf-12.png │ │ │ ├── golf-12@2x.png │ │ │ ├── golf-18.png │ │ │ ├── golf-18@2x.png │ │ │ ├── golf-24.png │ │ │ ├── golf-24@2x.png │ │ │ ├── grocery-12.png │ │ │ ├── grocery-12@2x.png │ │ │ ├── grocery-18.png │ │ │ ├── grocery-18@2x.png │ │ │ ├── grocery-24.png │ │ │ ├── grocery-24@2x.png │ │ │ ├── hairdresser-12.png │ │ │ ├── hairdresser-12@2x.png │ │ │ ├── hairdresser-18.png │ │ │ ├── hairdresser-18@2x.png │ │ │ ├── hairdresser-24.png │ │ │ ├── hairdresser-24@2x.png │ │ │ ├── harbor-12.png │ │ │ ├── harbor-12@2x.png │ │ │ ├── harbor-18.png │ │ │ ├── harbor-18@2x.png │ │ │ ├── harbor-24.png │ │ │ ├── harbor-24@2x.png │ │ │ ├── heart-12.png │ │ │ ├── heart-12@2x.png │ │ │ ├── heart-18.png │ │ │ ├── heart-18@2x.png │ │ │ ├── heart-24.png │ │ │ ├── heart-24@2x.png │ │ │ ├── heliport-12.png │ │ │ ├── heliport-12@2x.png │ │ │ ├── heliport-18.png │ │ │ ├── heliport-18@2x.png │ │ │ ├── heliport-24.png │ │ │ ├── heliport-24@2x.png │ │ │ ├── hospital-12.png │ │ │ ├── hospital-12@2x.png │ │ │ ├── hospital-18.png │ │ │ ├── hospital-18@2x.png │ │ │ ├── hospital-24.png │ │ │ ├── hospital-24@2x.png │ │ │ ├── ice-cream-12.png │ │ │ ├── ice-cream-12@2x.png │ │ │ ├── ice-cream-18.png │ │ │ ├── ice-cream-18@2x.png │ │ │ ├── ice-cream-24.png │ │ │ ├── ice-cream-24@2x.png │ │ │ ├── industrial-12.png │ │ │ ├── industrial-12@2x.png │ │ │ ├── industrial-18.png │ │ │ ├── industrial-18@2x.png │ │ │ ├── industrial-24.png │ │ │ ├── industrial-24@2x.png │ │ │ ├── land-use-12.png │ │ │ ├── land-use-12@2x.png │ │ │ ├── land-use-18.png │ │ │ ├── land-use-18@2x.png │ │ │ ├── land-use-24.png │ │ │ ├── land-use-24@2x.png │ │ │ ├── laundry-12.png │ │ │ ├── laundry-12@2x.png │ │ │ ├── laundry-18.png │ │ │ ├── laundry-18@2x.png │ │ │ ├── laundry-24.png │ │ │ ├── laundry-24@2x.png │ │ │ ├── library-12.png │ │ │ ├── library-12@2x.png │ │ │ ├── library-18.png │ │ │ ├── library-18@2x.png │ │ │ ├── library-24.png │ │ │ ├── library-24@2x.png │ │ │ ├── lighthouse-12.png │ │ │ ├── lighthouse-12@2x.png │ │ │ ├── lighthouse-18.png │ │ │ ├── lighthouse-18@2x.png │ │ │ ├── lighthouse-24.png │ │ │ ├── lighthouse-24@2x.png │ │ │ ├── lodging-12.png │ │ │ ├── lodging-12@2x.png │ │ │ ├── lodging-18.png │ │ │ ├── lodging-18@2x.png │ │ │ ├── lodging-24.png │ │ │ ├── lodging-24@2x.png │ │ │ ├── logging-12.png │ │ │ ├── logging-12@2x.png │ │ │ ├── logging-18.png │ │ │ ├── logging-18@2x.png │ │ │ ├── logging-24.png │ │ │ ├── logging-24@2x.png │ │ │ ├── london-underground-12.png │ │ │ ├── london-underground-12@2x.png │ │ │ ├── london-underground-18.png │ │ │ ├── london-underground-18@2x.png │ │ │ ├── london-underground-24.png │ │ │ ├── london-underground-24@2x.png │ │ │ ├── marker-12.png │ │ │ ├── marker-12@2x.png │ │ │ ├── marker-18.png │ │ │ ├── marker-18@2x.png │ │ │ ├── marker-24.png │ │ │ ├── marker-24@2x.png │ │ │ ├── marker-stroked-12.png │ │ │ ├── marker-stroked-12@2x.png │ │ │ ├── marker-stroked-18.png │ │ │ ├── marker-stroked-18@2x.png │ │ │ ├── marker-stroked-24.png │ │ │ ├── marker-stroked-24@2x.png │ │ │ ├── minefield-12.png │ │ │ ├── minefield-12@2x.png │ │ │ ├── minefield-18.png │ │ │ ├── minefield-18@2x.png │ │ │ ├── minefield-24.png │ │ │ ├── minefield-24@2x.png │ │ │ ├── mobilephone-12.png │ │ │ ├── mobilephone-12@2x.png │ │ │ ├── mobilephone-18.png │ │ │ ├── mobilephone-18@2x.png │ │ │ ├── mobilephone-24.png │ │ │ ├── mobilephone-24@2x.png │ │ │ ├── monument-12.png │ │ │ ├── monument-12@2x.png │ │ │ ├── monument-18.png │ │ │ ├── monument-18@2x.png │ │ │ ├── monument-24.png │ │ │ ├── monument-24@2x.png │ │ │ ├── museum-12.png │ │ │ ├── museum-12@2x.png │ │ │ ├── museum-18.png │ │ │ ├── museum-18@2x.png │ │ │ ├── museum-24.png │ │ │ ├── museum-24@2x.png │ │ │ ├── music-12.png │ │ │ ├── music-12@2x.png │ │ │ ├── music-18.png │ │ │ ├── music-18@2x.png │ │ │ ├── music-24.png │ │ │ ├── music-24@2x.png │ │ │ ├── oil-well-12.png │ │ │ ├── oil-well-12@2x.png │ │ │ ├── oil-well-18.png │ │ │ ├── oil-well-18@2x.png │ │ │ ├── oil-well-24.png │ │ │ ├── oil-well-24@2x.png │ │ │ ├── park-12.png │ │ │ ├── park-12@2x.png │ │ │ ├── park-18.png │ │ │ ├── park-18@2x.png │ │ │ ├── park-24.png │ │ │ ├── park-24@2x.png │ │ │ ├── park2-12.png │ │ │ ├── park2-12@2x.png │ │ │ ├── park2-18.png │ │ │ ├── park2-18@2x.png │ │ │ ├── park2-24.png │ │ │ ├── park2-24@2x.png │ │ │ ├── parking-12.png │ │ │ ├── parking-12@2x.png │ │ │ ├── parking-18.png │ │ │ ├── parking-18@2x.png │ │ │ ├── parking-24.png │ │ │ ├── parking-24@2x.png │ │ │ ├── parking-garage-12.png │ │ │ ├── parking-garage-12@2x.png │ │ │ ├── parking-garage-18.png │ │ │ ├── parking-garage-18@2x.png │ │ │ ├── parking-garage-24.png │ │ │ ├── parking-garage-24@2x.png │ │ │ ├── pharmacy-12.png │ │ │ ├── pharmacy-12@2x.png │ │ │ ├── pharmacy-18.png │ │ │ ├── pharmacy-18@2x.png │ │ │ ├── pharmacy-24.png │ │ │ ├── pharmacy-24@2x.png │ │ │ ├── pitch-12.png │ │ │ ├── pitch-12@2x.png │ │ │ ├── pitch-18.png │ │ │ ├── pitch-18@2x.png │ │ │ ├── pitch-24.png │ │ │ ├── pitch-24@2x.png │ │ │ ├── place-of-worship-12.png │ │ │ ├── place-of-worship-12@2x.png │ │ │ ├── place-of-worship-18.png │ │ │ ├── place-of-worship-18@2x.png │ │ │ ├── place-of-worship-24.png │ │ │ ├── place-of-worship-24@2x.png │ │ │ ├── playground-12.png │ │ │ ├── playground-12@2x.png │ │ │ ├── playground-18.png │ │ │ ├── playground-18@2x.png │ │ │ ├── playground-24.png │ │ │ ├── playground-24@2x.png │ │ │ ├── police-12.png │ │ │ ├── police-12@2x.png │ │ │ ├── police-18.png │ │ │ ├── police-18@2x.png │ │ │ ├── police-24.png │ │ │ ├── police-24@2x.png │ │ │ ├── polling-place-12.png │ │ │ ├── polling-place-12@2x.png │ │ │ ├── polling-place-18.png │ │ │ ├── polling-place-18@2x.png │ │ │ ├── polling-place-24.png │ │ │ ├── polling-place-24@2x.png │ │ │ ├── post-12.png │ │ │ ├── post-12@2x.png │ │ │ ├── post-18.png │ │ │ ├── post-18@2x.png │ │ │ ├── post-24.png │ │ │ ├── post-24@2x.png │ │ │ ├── prison-12.png │ │ │ ├── prison-12@2x.png │ │ │ ├── prison-18.png │ │ │ ├── prison-18@2x.png │ │ │ ├── prison-24.png │ │ │ ├── prison-24@2x.png │ │ │ ├── rail-12.png │ │ │ ├── rail-12@2x.png │ │ │ ├── rail-18.png │ │ │ ├── rail-18@2x.png │ │ │ ├── rail-24.png │ │ │ ├── rail-24@2x.png │ │ │ ├── rail-above-12.png │ │ │ ├── rail-above-12@2x.png │ │ │ ├── rail-above-18.png │ │ │ ├── rail-above-18@2x.png │ │ │ ├── rail-above-24.png │ │ │ ├── rail-above-24@2x.png │ │ │ ├── rail-light-12.png │ │ │ ├── rail-light-12@2x.png │ │ │ ├── rail-light-18.png │ │ │ ├── rail-light-18@2x.png │ │ │ ├── rail-light-24.png │ │ │ ├── rail-light-24@2x.png │ │ │ ├── rail-metro-12.png │ │ │ ├── rail-metro-12@2x.png │ │ │ ├── rail-metro-18.png │ │ │ ├── rail-metro-18@2x.png │ │ │ ├── rail-metro-24.png │ │ │ ├── rail-metro-24@2x.png │ │ │ ├── rail-underground-12.png │ │ │ ├── rail-underground-12@2x.png │ │ │ ├── rail-underground-18.png │ │ │ ├── rail-underground-18@2x.png │ │ │ ├── rail-underground-24.png │ │ │ ├── rail-underground-24@2x.png │ │ │ ├── religious-christian-12.png │ │ │ ├── religious-christian-12@2x.png │ │ │ ├── religious-christian-18.png │ │ │ ├── religious-christian-18@2x.png │ │ │ ├── religious-christian-24.png │ │ │ ├── religious-christian-24@2x.png │ │ │ ├── religious-jewish-12.png │ │ │ ├── religious-jewish-12@2x.png │ │ │ ├── religious-jewish-18.png │ │ │ ├── religious-jewish-18@2x.png │ │ │ ├── religious-jewish-24.png │ │ │ ├── religious-jewish-24@2x.png │ │ │ ├── religious-muslim-12.png │ │ │ ├── religious-muslim-12@2x.png │ │ │ ├── religious-muslim-18.png │ │ │ ├── religious-muslim-18@2x.png │ │ │ ├── religious-muslim-24.png │ │ │ ├── religious-muslim-24@2x.png │ │ │ ├── restaurant-12.png │ │ │ ├── restaurant-12@2x.png │ │ │ ├── restaurant-18.png │ │ │ ├── restaurant-18@2x.png │ │ │ ├── restaurant-24.png │ │ │ ├── restaurant-24@2x.png │ │ │ ├── roadblock-12.png │ │ │ ├── roadblock-12@2x.png │ │ │ ├── roadblock-18.png │ │ │ ├── roadblock-18@2x.png │ │ │ ├── roadblock-24.png │ │ │ ├── roadblock-24@2x.png │ │ │ ├── rocket-12.png │ │ │ ├── rocket-12@2x.png │ │ │ ├── rocket-18.png │ │ │ ├── rocket-18@2x.png │ │ │ ├── rocket-24.png │ │ │ ├── rocket-24@2x.png │ │ │ ├── school-12.png │ │ │ ├── school-12@2x.png │ │ │ ├── school-18.png │ │ │ ├── school-18@2x.png │ │ │ ├── school-24.png │ │ │ ├── school-24@2x.png │ │ │ ├── scooter-12.png │ │ │ ├── scooter-12@2x.png │ │ │ ├── scooter-18.png │ │ │ ├── scooter-18@2x.png │ │ │ ├── scooter-24.png │ │ │ ├── scooter-24@2x.png │ │ │ ├── shop-12.png │ │ │ ├── shop-12@2x.png │ │ │ ├── shop-18.png │ │ │ ├── shop-18@2x.png │ │ │ ├── shop-24.png │ │ │ ├── shop-24@2x.png │ │ │ ├── skiing-12.png │ │ │ ├── skiing-12@2x.png │ │ │ ├── skiing-18.png │ │ │ ├── skiing-18@2x.png │ │ │ ├── skiing-24.png │ │ │ ├── skiing-24@2x.png │ │ │ ├── slaughterhouse-12.png │ │ │ ├── slaughterhouse-12@2x.png │ │ │ ├── slaughterhouse-18.png │ │ │ ├── slaughterhouse-18@2x.png │ │ │ ├── slaughterhouse-24.png │ │ │ ├── slaughterhouse-24@2x.png │ │ │ ├── soccer-12.png │ │ │ ├── soccer-12@2x.png │ │ │ ├── soccer-18.png │ │ │ ├── soccer-18@2x.png │ │ │ ├── soccer-24.png │ │ │ ├── soccer-24@2x.png │ │ │ ├── square-12.png │ │ │ ├── square-12@2x.png │ │ │ ├── square-18.png │ │ │ ├── square-18@2x.png │ │ │ ├── square-24.png │ │ │ ├── square-24@2x.png │ │ │ ├── square-stroked-12.png │ │ │ ├── square-stroked-12@2x.png │ │ │ ├── square-stroked-18.png │ │ │ ├── square-stroked-18@2x.png │ │ │ ├── square-stroked-24.png │ │ │ ├── square-stroked-24@2x.png │ │ │ ├── star-12.png │ │ │ ├── star-12@2x.png │ │ │ ├── star-18.png │ │ │ ├── star-18@2x.png │ │ │ ├── star-24.png │ │ │ ├── star-24@2x.png │ │ │ ├── star-stroked-12.png │ │ │ ├── star-stroked-12@2x.png │ │ │ ├── star-stroked-18.png │ │ │ ├── star-stroked-18@2x.png │ │ │ ├── star-stroked-24.png │ │ │ ├── star-stroked-24@2x.png │ │ │ ├── suitcase-12.png │ │ │ ├── suitcase-12@2x.png │ │ │ ├── suitcase-18.png │ │ │ ├── suitcase-18@2x.png │ │ │ ├── suitcase-24.png │ │ │ ├── suitcase-24@2x.png │ │ │ ├── swimming-12.png │ │ │ ├── swimming-12@2x.png │ │ │ ├── swimming-18.png │ │ │ ├── swimming-18@2x.png │ │ │ ├── swimming-24.png │ │ │ ├── swimming-24@2x.png │ │ │ ├── telephone-12.png │ │ │ ├── telephone-12@2x.png │ │ │ ├── telephone-18.png │ │ │ ├── telephone-18@2x.png │ │ │ ├── telephone-24.png │ │ │ ├── telephone-24@2x.png │ │ │ ├── tennis-12.png │ │ │ ├── tennis-12@2x.png │ │ │ ├── tennis-18.png │ │ │ ├── tennis-18@2x.png │ │ │ ├── tennis-24.png │ │ │ ├── tennis-24@2x.png │ │ │ ├── theatre-12.png │ │ │ ├── theatre-12@2x.png │ │ │ ├── theatre-18.png │ │ │ ├── theatre-18@2x.png │ │ │ ├── theatre-24.png │ │ │ ├── theatre-24@2x.png │ │ │ ├── toilets-12.png │ │ │ ├── toilets-12@2x.png │ │ │ ├── toilets-18.png │ │ │ ├── toilets-18@2x.png │ │ │ ├── toilets-24.png │ │ │ ├── toilets-24@2x.png │ │ │ ├── town-12.png │ │ │ ├── town-12@2x.png │ │ │ ├── town-18.png │ │ │ ├── town-18@2x.png │ │ │ ├── town-24.png │ │ │ ├── town-24@2x.png │ │ │ ├── town-hall-12.png │ │ │ ├── town-hall-12@2x.png │ │ │ ├── town-hall-18.png │ │ │ ├── town-hall-18@2x.png │ │ │ ├── town-hall-24.png │ │ │ ├── town-hall-24@2x.png │ │ │ ├── triangle-12.png │ │ │ ├── triangle-12@2x.png │ │ │ ├── triangle-18.png │ │ │ ├── triangle-18@2x.png │ │ │ ├── triangle-24.png │ │ │ ├── triangle-24@2x.png │ │ │ ├── triangle-stroked-12.png │ │ │ ├── triangle-stroked-12@2x.png │ │ │ ├── triangle-stroked-18.png │ │ │ ├── triangle-stroked-18@2x.png │ │ │ ├── triangle-stroked-24.png │ │ │ ├── triangle-stroked-24@2x.png │ │ │ ├── village-12.png │ │ │ ├── village-12@2x.png │ │ │ ├── village-18.png │ │ │ ├── village-18@2x.png │ │ │ ├── village-24.png │ │ │ ├── village-24@2x.png │ │ │ ├── warehouse-12.png │ │ │ ├── warehouse-12@2x.png │ │ │ ├── warehouse-18.png │ │ │ ├── warehouse-18@2x.png │ │ │ ├── warehouse-24.png │ │ │ ├── warehouse-24@2x.png │ │ │ ├── waste-basket-12.png │ │ │ ├── waste-basket-12@2x.png │ │ │ ├── waste-basket-18.png │ │ │ ├── waste-basket-18@2x.png │ │ │ ├── waste-basket-24.png │ │ │ ├── waste-basket-24@2x.png │ │ │ ├── water-12.png │ │ │ ├── water-12@2x.png │ │ │ ├── water-18.png │ │ │ ├── water-18@2x.png │ │ │ ├── water-24.png │ │ │ ├── water-24@2x.png │ │ │ ├── wetland-12.png │ │ │ ├── wetland-12@2x.png │ │ │ ├── wetland-18.png │ │ │ ├── wetland-18@2x.png │ │ │ ├── wetland-24.png │ │ │ ├── wetland-24@2x.png │ │ │ ├── zoo-12.png │ │ │ ├── zoo-12@2x.png │ │ │ ├── zoo-18.png │ │ │ ├── zoo-18@2x.png │ │ │ ├── zoo-24.png │ │ │ └── zoo-24@2x.png │ ├── paddle │ │ ├── 1-lv.png │ │ ├── 1.png │ │ ├── 10-lv.png │ │ ├── 10.png │ │ ├── 2-lv.png │ │ ├── 2.png │ │ ├── 3-lv.png │ │ ├── 3.png │ │ ├── 4-lv.png │ │ ├── 4.png │ │ ├── 5-lv.png │ │ ├── 5.png │ │ ├── 6-lv.png │ │ ├── 6.png │ │ ├── 7-lv.png │ │ ├── 7.png │ │ ├── 8-lv.png │ │ ├── 8.png │ │ ├── 9-lv.png │ │ ├── 9.png │ │ ├── a-lv.png │ │ ├── a.png │ │ ├── b-lv.png │ │ ├── b.png │ │ ├── blu-blank-lv.png │ │ ├── blu-blank.png │ │ ├── blu-circle-lv.png │ │ ├── blu-circle.png │ │ ├── blu-diamond-lv.png │ │ ├── blu-diamond.png │ │ ├── blu-square-lv.png │ │ ├── blu-square.png │ │ ├── blu-stars-lv.png │ │ ├── blu-stars.png │ │ ├── c-lv.png │ │ ├── c.png │ │ ├── d-lv.png │ │ ├── d.png │ │ ├── e-lv.png │ │ ├── e.png │ │ ├── f-lv.png │ │ ├── f.png │ │ ├── g-lv.png │ │ ├── g.png │ │ ├── go-lv.png │ │ ├── go.png │ │ ├── grn-blank-lv.png │ │ ├── grn-blank.png │ │ ├── grn-circle-lv.png │ │ ├── grn-circle.png │ │ ├── grn-diamond-lv.png │ │ ├── grn-diamond.png │ │ ├── grn-square-lv.png │ │ ├── grn-square.png │ │ ├── grn-stars-lv.png │ │ ├── grn-stars.png │ │ ├── h-lv.png │ │ ├── h.png │ │ ├── i-lv.png │ │ ├── i.png │ │ ├── j-lv.png │ │ ├── j.png │ │ ├── k-lv.png │ │ ├── k.png │ │ ├── l-lv.png │ │ ├── l.png │ │ ├── ltblu-blank-lv.png │ │ ├── ltblu-blank.png │ │ ├── ltblu-circle-lv.png │ │ ├── ltblu-circle.png │ │ ├── ltblu-diamond-lv.png │ │ ├── ltblu-diamond.png │ │ ├── ltblu-square-lv.png │ │ ├── ltblu-square.png │ │ ├── ltblu-stars-lv.png │ │ ├── ltblu-stars.png │ │ ├── m-lv.png │ │ ├── m.png │ │ ├── n-lv.png │ │ ├── n.png │ │ ├── o-lv.png │ │ ├── o.png │ │ ├── p-lv.png │ │ ├── p.png │ │ ├── pause-lv.png │ │ ├── pause.png │ │ ├── pink-blank-lv.png │ │ ├── pink-blank.png │ │ ├── pink-circle-lv.png │ │ ├── pink-circle.png │ │ ├── pink-diamond-lv.png │ │ ├── pink-diamond.png │ │ ├── pink-square-lv.png │ │ ├── pink-square.png │ │ ├── pink-stars-lv.png │ │ ├── pink-stars.png │ │ ├── purple-circle-lv.png │ │ ├── purple-circle.png │ │ ├── purple-diamond-lv.png │ │ ├── purple-diamond.png │ │ ├── purple-square-lv.png │ │ ├── purple-square.png │ │ ├── purple-stars-lv.png │ │ ├── purple-stars.png │ │ ├── q-lv.png │ │ ├── q.png │ │ ├── r-lv.png │ │ ├── r.png │ │ ├── red-circle-lv.png │ │ ├── red-circle.png │ │ ├── red-diamond-lv.png │ │ ├── red-diamond.png │ │ ├── red-square-lv.png │ │ ├── red-square.png │ │ ├── red-stars-lv.png │ │ ├── red-stars.png │ │ ├── route.png │ │ ├── s-lv.png │ │ ├── s.png │ │ ├── stop-lv.png │ │ ├── stop.png │ │ ├── t-lv.png │ │ ├── t.png │ │ ├── u-lv.png │ │ ├── u.png │ │ ├── v-lv.png │ │ ├── v.png │ │ ├── w-lv.png │ │ ├── w.png │ │ ├── wht-blank-lv.png │ │ ├── wht-blank.png │ │ ├── wht-circle-lv.png │ │ ├── wht-circle.png │ │ ├── wht-diamond-lv.png │ │ ├── wht-diamond.png │ │ ├── wht-square-lv.png │ │ ├── wht-square.png │ │ ├── wht-stars-lv.png │ │ ├── wht-stars.png │ │ ├── x-lv.png │ │ ├── x.png │ │ ├── y-lv.png │ │ ├── y.png │ │ ├── ylw-blank-lv.png │ │ ├── ylw-blank.png │ │ ├── ylw-circle-lv.png │ │ ├── ylw-circle.png │ │ ├── ylw-diamond-lv.png │ │ ├── ylw-diamond.png │ │ ├── ylw-square-lv.png │ │ ├── ylw-square.png │ │ ├── ylw-stars-lv.png │ │ ├── ylw-stars.png │ │ ├── z-lv.png │ │ └── z.png │ ├── pushpin │ │ ├── blue-pushpin.png │ │ ├── grn-pushpin.png │ │ ├── ltblu-pushpin.png │ │ ├── pink-pushpin.png │ │ ├── purple-pushpin.png │ │ ├── red-pushpin.png │ │ ├── wht-pushpin.png │ │ └── ylw-pushpin.png │ └── shapes │ │ ├── airports.png │ │ ├── arrow-reverse.png │ │ ├── arrow.png │ │ ├── arts.png │ │ ├── bars.png │ │ ├── broken_link.png │ │ ├── bus.png │ │ ├── cabs.png │ │ ├── camera-lv.png │ │ ├── camera.png │ │ ├── campfire.png │ │ ├── campground.png │ │ ├── capital_big.png │ │ ├── capital_big_highlight.png │ │ ├── capital_small.png │ │ ├── capital_small_highlight.png │ │ ├── caution.png │ │ ├── church.png │ │ ├── coffee.png │ │ ├── convenience.png │ │ ├── cross-hairs.png │ │ ├── cross-hairs_highlight.png │ │ ├── cycling.png │ │ ├── dining.png │ │ ├── dollar.png │ │ ├── donut.png │ │ ├── earthquake.png │ │ ├── electronics.png │ │ ├── euro.png │ │ ├── falling_rocks.png │ │ ├── ferry.png │ │ ├── firedept.png │ │ ├── fishing.png │ │ ├── flag.png │ │ ├── forbidden.png │ │ ├── gas_stations.png │ │ ├── golf.png │ │ ├── grocery.png │ │ ├── heliport.png │ │ ├── highway.png │ │ ├── hiker.png │ │ ├── homegardenbusiness.png │ │ ├── horsebackriding.png │ │ ├── hospitals.png │ │ ├── info-i.png │ │ ├── info.png │ │ ├── info_circle.png │ │ ├── lodging.png │ │ ├── man.png │ │ ├── marina.png │ │ ├── mechanic.png │ │ ├── motorcycling.png │ │ ├── mountains.png │ │ ├── movies.png │ │ ├── open-diamond.png │ │ ├── parking_lot.png │ │ ├── parks.png │ │ ├── partly_cloudy.png │ │ ├── pharmacy_rx.png │ │ ├── phone.png │ │ ├── picnic.png │ │ ├── placemark_circle.png │ │ ├── placemark_circle_highlight.png │ │ ├── placemark_square.png │ │ ├── placemark_square_highlight.png │ │ ├── play.png │ │ ├── poi.png │ │ ├── police.png │ │ ├── polygon.png │ │ ├── post_office.png │ │ ├── rail.png │ │ ├── rainy.png │ │ ├── ranger_station.png │ │ ├── realestate.png │ │ ├── road_shield1.png │ │ ├── road_shield2.png │ │ ├── road_shield3.png │ │ ├── ruler.png │ │ ├── sailing.png │ │ ├── salon.png │ │ ├── schools.png │ │ ├── shaded_dot.png │ │ ├── shopping.png │ │ ├── ski.png │ │ ├── snack_bar.png │ │ ├── snowflake_simple.png │ │ ├── square.png │ │ ├── star.png │ │ ├── subway.png │ │ ├── sunny.png │ │ ├── swimming.png │ │ ├── terrain.png │ │ ├── thunderstorm.png │ │ ├── toilets.png │ │ ├── trail.png │ │ ├── tram.png │ │ ├── triangle.png │ │ ├── truck.png │ │ ├── volcano.png │ │ ├── water.png │ │ ├── webcam.png │ │ ├── wheel_chair_accessible.png │ │ ├── woman.png │ │ └── yen.png ├── layers.png ├── loberror.png ├── lock_tiny_white.png ├── logo.svg ├── opensphere.png ├── search_gray.png ├── state-base.png ├── subtle_freckles.png ├── tiles-base.png ├── time-base.png ├── vendor │ ├── angular.png │ ├── bootstrap.png │ ├── cesium.png │ ├── closure.png │ ├── fontawesome.png │ ├── jquery.gif │ ├── jquery.png │ └── ol3.png └── whitey.png ├── index-template.html ├── index.js ├── karma.conf.js ├── logos ├── opensphere-blackandwhite-horizontal.svg ├── opensphere-blackandwhite-icon.svg ├── opensphere-blackandwhite-text_only.svg ├── opensphere-blackandwhite-vertical.svg ├── opensphere-grayscale-horizontal.svg ├── opensphere-grayscale-icon.svg ├── opensphere-grayscale-text_only.svg ├── opensphere-grayscale-vertical.svg ├── opensphere-light_text-horizontal.svg ├── opensphere-light_text-icon.svg ├── opensphere-light_text-text_only.svg ├── opensphere-light_text-vertical.svg ├── opensphere-logo-horizontal.svg ├── opensphere-logo-icon.svg ├── opensphere-logo-text_only.svg ├── opensphere-logo-vertical.svg ├── opensphere-whiteandblack-horizontal.svg ├── opensphere-whiteandblack-icon.svg ├── opensphere-whiteandblack-text_only.svg └── opensphere-whiteandblack-vertical.svg ├── modernizr.config.json ├── old-template.html ├── onboarding ├── adddata.json ├── features.json ├── intro.json └── loaddata.json ├── package.json ├── scripts ├── addlayer-replace.js ├── electron │ ├── electronvendorpost.js │ ├── electronvendorpre.js │ └── preload.js └── whydep.js ├── scss ├── cb_b │ ├── _bootswatch.scss │ └── _variables.scss ├── cb_rg │ ├── _bootswatch.scss │ └── _variables.scss ├── compact │ ├── _bootswatch.scss │ └── _variables.scss ├── fontloader.scss ├── opensphere.scss ├── os │ ├── _actionmenuitemlist.scss │ ├── _alertpopup.scss │ ├── _animations.scss │ ├── _annotation.scss │ ├── _closetab.scss │ ├── _colorpalette.scss │ ├── _configstep.scss │ ├── _consent.scss │ ├── _datepanel.scss │ ├── _datetime.scss │ ├── _descriptorresultcard.scss │ ├── _draganddropicon.scss │ ├── _dragdrop.scss │ ├── _duration.scss │ ├── _electron.scss │ ├── _formatter.scss │ ├── _glyph.scss │ ├── _iconpicker.scss │ ├── _layercompare.scss │ ├── _link.scss │ ├── _loading.scss │ ├── _loboptions.scss │ ├── _menu.scss │ ├── _mixins.scss │ ├── _navtop.scss │ ├── _nganimate.scss │ ├── _ngonboarding.scss │ ├── _ngvalidate.scss │ ├── _overrides_bootstrap.scss │ ├── _overrides_bootstrap_variables.scss │ ├── _overrides_jqueryui.scss │ ├── _overrides_openlayers.scss │ ├── _overrides_select2.scss │ ├── _overrides_slickgrid.scss │ ├── _overrides_tuieditor.scss │ ├── _propertiestab.scss │ ├── _ringoptions.scss │ ├── _searchresults.scss │ ├── _singlepage.scss │ ├── _sitemessage.scss │ ├── _slicktree.scss │ ├── _themevariables.scss │ ├── _timeline.scss │ ├── _timelinepanel.scss │ ├── _tristate.scss │ ├── _utils.scss │ ├── _variables.scss │ ├── _vectorstylecontrol.scss │ ├── _window.scss │ └── _wizardpreview.scss ├── overrides_default │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_compact │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_compact_cb_b │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_compact_cb_rg │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_standard │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_standard_cb_b │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_default_standard_cb_rg │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_compact │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_compact_cb_b │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_compact_cb_rg │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_standard │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_standard_cb_b │ ├── _bootswatch.scss │ └── _variables.scss ├── overrides_slate_standard_cb_rg │ ├── _bootswatch.scss │ └── _variables.scss └── standard │ ├── _bootswatch.scss │ └── _variables.scss ├── src ├── README.md ├── os │ ├── action │ │ └── eventtype.js │ ├── alert │ │ ├── alert.js │ │ ├── alertevent.js │ │ ├── alerteventlevel.js │ │ ├── alerteventseverity.js │ │ ├── alerteventtypes.js │ │ ├── alertmanager.js │ │ └── eventtype.js │ ├── annotation │ │ ├── abstractannotation.js │ │ ├── abstractannotationctrl.js │ │ ├── annotation.js │ │ ├── annotationoptions.js │ │ ├── featureannotation.js │ │ ├── featureannotationui.js │ │ ├── iannotation.js │ │ ├── tailstyle.js │ │ └── tailtype.js │ ├── array │ │ └── array.js │ ├── arraybuf.js │ ├── audio │ │ ├── audiomanager.js │ │ └── audiosetting.js │ ├── auth.js │ ├── bearing │ │ ├── bearing.js │ │ ├── bearingsettings.js │ │ ├── bearingsettingskeys.js │ │ ├── bearingsettingsui.js │ │ └── bearingtype.js │ ├── buffer │ │ └── buffer.js │ ├── capture │ │ ├── abstractrecorder.js │ │ ├── abstractvideoencoder.js │ │ ├── capture.js │ │ ├── captureeventtype.js │ │ ├── contenttype.js │ │ ├── gifcapture.js │ │ ├── gifencoder.js │ │ ├── gifeventtype.js │ │ ├── irecorder.js │ │ ├── ivideoencoder.js │ │ └── timelinerecorder.js │ ├── classregistry.js │ ├── color.js │ ├── column │ │ ├── columnmapping.js │ │ ├── columnmappingevent.js │ │ ├── columnmappingeventtype.js │ │ ├── columnmappingmanager.js │ │ ├── columnmappingtag.js │ │ └── icolumnmapping.js │ ├── command │ │ ├── abstractasynccommand.js │ │ ├── abstractcommandset.js │ │ ├── abstractlayercmd.js │ │ ├── abstractlayerstylecmd.js │ │ ├── abstractselectcmd.js │ │ ├── abstractsourcecmd.js │ │ ├── abstractstylecmd.js │ │ ├── abstractsynccommand.js │ │ ├── abstractvectorlayerlob.js │ │ ├── abstractvectorstylecmd.js │ │ ├── areatogglecmd.js │ │ ├── clearmappositioncmd.js │ │ ├── colorchangetype.js │ │ ├── commandevent.js │ │ ├── commandprocessor.js │ │ ├── editlayerfeaturescmd.js │ │ ├── eventtype.js │ │ ├── exclusionqueryclearcmd.js │ │ ├── feature │ │ │ ├── abstractfeaturestylecmd.js │ │ │ ├── featurecentershapecmd.js │ │ │ ├── featurecolorcmd.js │ │ │ ├── featureiconcmd.js │ │ │ ├── featurelabelcmd.js │ │ │ ├── featurelabelcolorcmd.js │ │ │ ├── featurelabelsizecmd.js │ │ │ ├── featurelinedashcmd.js │ │ │ ├── featureopacitycmd.js │ │ │ ├── featureshapecmd.js │ │ │ ├── featureshowlabelcmd.js │ │ │ └── featuresizecmd.js │ │ ├── featuresvisibilitycmd.js │ │ ├── filterenablecmd.js │ │ ├── fitlayerbyid.js │ │ ├── flytocmd.js │ │ ├── flytoextentcmd.js │ │ ├── icommand.js │ │ ├── interpolatefeaturescmd.js │ │ ├── invertselectcmd.js │ │ ├── layeraddcmd.js │ │ ├── layerautorefreshcmd.js │ │ ├── layerclearcmd.js │ │ ├── layercolorcmd.js │ │ ├── layerremovecmd.js │ │ ├── layerstylecmd.js │ │ ├── layervisibilitycmd.js │ │ ├── nonqueryclearcmd.js │ │ ├── parallelcommand.js │ │ ├── queryclearcmd.js │ │ ├── renamelayercmd.js │ │ ├── selectallcmd.js │ │ ├── selectnonecmd.js │ │ ├── sequencecommand.js │ │ ├── setlayertitlecmd.js │ │ ├── state.js │ │ ├── switchviewcmd.js │ │ ├── tilelayercolorizecmd.js │ │ ├── tilelayerstylecmd.js │ │ ├── togglewebglcmd.js │ │ ├── transformareascmd.js │ │ ├── transformvectorscmd.js │ │ ├── vectorlayerarrowsizecmd.js │ │ ├── vectorlayerarrowunits.js │ │ ├── vectorlayerautorefreshcmd.js │ │ ├── vectorlayerbearingcmd.js │ │ ├── vectorlayerbearingerrorcmd.js │ │ ├── vectorlayerbearingerrorcolumncmd.js │ │ ├── vectorlayercentershapecmd.js │ │ ├── vectorlayercolorcmd.js │ │ ├── vectorlayerfillopacitycmd.js │ │ ├── vectorlayericoncmd.js │ │ ├── vectorlayerlabelcmd.js │ │ ├── vectorlayerlabelcolorcmd.js │ │ ├── vectorlayerlabelsizecmd.js │ │ ├── vectorlayerlinedashcmd.js │ │ ├── vectorlayerlobcolumnlengthcmd.js │ │ ├── vectorlayerloberrorcmd.js │ │ ├── vectorlayerloblengthcmd.js │ │ ├── vectorlayerloblengtherrorcmd.js │ │ ├── vectorlayerloblengtherrorunitscmd.js │ │ ├── vectorlayerloblengthunitscmd.js │ │ ├── vectorlayerlobmultipliercmd.js │ │ ├── vectorlayerlobtypecmd.js │ │ ├── vectorlayerpresetcmd.js │ │ ├── vectorlayerreplacestylecmd.js │ │ ├── vectorlayerrotationcmd.js │ │ ├── vectorlayershapecmd.js │ │ ├── vectorlayershowarrowcmd.js │ │ ├── vectorlayershowellipsecmd.js │ │ ├── vectorlayershowellipsoidscmd.js │ │ ├── vectorlayershowerrorcmd.js │ │ ├── vectorlayershowgroundreferencecmd.js │ │ ├── vectorlayershowlabelcmd.js │ │ ├── vectorlayershowrotationcmd.js │ │ ├── vectorlayersizecmd.js │ │ └── vectoruniqueidcmd.js │ ├── config │ │ ├── abstractsettingsinitializer.js │ │ ├── areasettings.js │ │ ├── areasettingsui.js │ │ ├── config.js │ │ ├── configinstance.js │ │ ├── configtype.js │ │ ├── displaysetting.js │ │ ├── displaysettings.js │ │ ├── displaysettingsui.js │ │ ├── eventtype.js │ │ ├── interpolationsettings.js │ │ ├── interpolationsettingsui.js │ │ ├── legendsetting.js │ │ ├── legendsettings.js │ │ ├── legendsettingsui.js │ │ ├── namespace.js │ │ ├── projectionsettings.js │ │ ├── projectionsettingsui.js │ │ ├── serversettings.js │ │ ├── settings.js │ │ ├── settingsinitializer.js │ │ ├── settingsinitializermanager.js │ │ ├── storage │ │ │ ├── baselocalsettingsstorage.js │ │ │ ├── isettingsreadablestorage.js │ │ │ ├── isettingsstorage.js │ │ │ ├── isettingswritablestorage.js │ │ │ ├── settingsfile.js │ │ │ ├── settingsidbstorage.js │ │ │ ├── settingslocalstorage.js │ │ │ ├── settingsobjectstorage.js │ │ │ ├── settingsstorageloader.js │ │ │ ├── settingsstorageregistry.js │ │ │ └── settingswritablestoragetype.js │ │ ├── theme.js │ │ ├── themesettings.js │ │ ├── themesettingsaccessibilitychangeevent.js │ │ ├── themesettingschangeevent.js │ │ ├── themesettingsui.js │ │ ├── unitsettings.js │ │ └── unitsettingsui.js │ ├── control │ │ ├── alertpopup.js │ │ ├── attribution.js │ │ ├── control.js │ │ ├── mapmodecontrol.js │ │ ├── rotatecontrol.js │ │ ├── scaleline.js │ │ ├── zoomcontrol.js │ │ ├── zoomlevel.js │ │ └── zoomleveloptions.js │ ├── data │ │ ├── abstractdescriptorcmd.js │ │ ├── activatedescriptorcmd.js │ │ ├── areanode.js │ │ ├── areatreesearch.js │ │ ├── basedescriptor.js │ │ ├── collectionmanager.js │ │ ├── columndefinition.js │ │ ├── configdescriptor.js │ │ ├── data.js │ │ ├── datamanager.js │ │ ├── dataproviderevent.js │ │ ├── dataprovidereventtype.js │ │ ├── deactivatedescriptorcmd.js │ │ ├── descriptorevent.js │ │ ├── descriptoreventtype.js │ │ ├── drawingfeaturenode.js │ │ ├── drawinglayernode.js │ │ ├── event │ │ │ ├── dataevent.js │ │ │ └── dataeventtype.js │ │ ├── featureevent.js │ │ ├── featureeventtype.js │ │ ├── filedescriptor.js │ │ ├── fileprovider.js │ │ ├── filternode.js │ │ ├── filtertreesearch.js │ │ ├── foldernode.js │ │ ├── groupby │ │ │ ├── basegroupby.js │ │ │ ├── dategroupby.js │ │ │ ├── favoritegroupby.js │ │ │ ├── inodegroupby.js │ │ │ ├── layerprovidergroupby.js │ │ │ ├── layertypegroupby.js │ │ │ ├── layerzordergroupby.js │ │ │ ├── recentgroupby.js │ │ │ ├── sourcegroupby.js │ │ │ ├── taglistgroupby.js │ │ │ └── typegroupby.js │ │ ├── histo │ │ │ ├── colorbin.js │ │ │ ├── colormethod.js │ │ │ ├── colormodel.js │ │ │ ├── colormodellegendrenderer.js │ │ │ ├── histogramutils.js │ │ │ ├── sourcehistogram.js │ │ │ └── timelinehistmanager.js │ │ ├── iareatest.js │ │ ├── idatadescriptor.js │ │ ├── idatamanager.js │ │ ├── idataprovider.js │ │ ├── iextent.js │ │ ├── iloadingprovider.js │ │ ├── imappingdescriptor.js │ │ ├── ireimport.js │ │ ├── isearchable.js │ │ ├── iserverdescriptor.js │ │ ├── iurldescriptor.js │ │ ├── layernode.js │ │ ├── layersyncdescriptor.js │ │ ├── layertreesearch.js │ │ ├── propertychange.js │ │ ├── providerentry.js │ │ ├── recordfield.js │ │ ├── registry.js │ │ ├── registryproperychange.js │ │ ├── sourcemanager.js │ │ ├── xf │ │ │ ├── datamodel.js │ │ │ ├── igroupable.js │ │ │ └── propertychange.js │ │ ├── zorder.js │ │ ├── zorderentry.js │ │ └── zordereventtype.js │ ├── debug │ │ └── fancierwindow.js │ ├── defines.js │ ├── dispatcher.js │ ├── easing │ │ └── easing.js │ ├── events │ │ ├── errorevent.js │ │ ├── event.js │ │ ├── eventfactory.js │ │ ├── events.js │ │ ├── eventtype.js │ │ ├── layerconfigevent.js │ │ ├── layerconfigeventtype.js │ │ ├── layerevent.js │ │ ├── layereventtype.js │ │ ├── payloadevent.js │ │ ├── propertychangeevent.js │ │ ├── selectiontype.js │ │ └── settingchangeevent.js │ ├── ex │ │ ├── abstractexporter.js │ │ ├── export.js │ │ ├── iexportmethod.js │ │ ├── ipersistencemethod.js │ │ └── zipexporter.js │ ├── extent.js │ ├── feature │ │ ├── dynamicfeature.js │ │ ├── dynamicpropertychange.js │ │ ├── feature.js │ │ └── measurefeature.js │ ├── fields │ │ ├── fields.js │ │ └── index.js │ ├── file │ │ ├── file.js │ │ ├── filemanager.js │ │ ├── filesettings.js │ │ ├── filesettingsui.js │ │ ├── filestorage.js │ │ ├── fileupload.js │ │ ├── fileurlhandler.js │ │ ├── filewrapper.js │ │ ├── ifilemethod.js │ │ ├── index.js │ │ ├── mime.js │ │ ├── mime │ │ │ ├── README.md │ │ │ ├── any.js │ │ │ ├── columnmapping.js │ │ │ ├── csv.js │ │ │ ├── filter.js │ │ │ ├── html.js │ │ │ ├── json.js │ │ │ ├── jsonsettings.js │ │ │ ├── jsonstate.js │ │ │ ├── pdf.js │ │ │ ├── text.js │ │ │ ├── types.js │ │ │ ├── xml.js │ │ │ ├── xmlcontext.js │ │ │ ├── xmlstate.js │ │ │ └── zip.js │ │ └── persist │ │ │ ├── filepersistence.js │ │ │ ├── localfilepersistence.js │ │ │ └── persist.js │ ├── filter │ │ ├── abstractfilter.js │ │ ├── basefiltermanager.js │ │ ├── clonetocontext.js │ │ ├── defaultfilter.js │ │ ├── filter.js │ │ ├── filterentry.js │ │ ├── filtertype.js │ │ ├── ifilter.js │ │ ├── ifilterable.js │ │ ├── ifiltercapable.js │ │ ├── ifilterentry.js │ │ ├── ifilterformatter.js │ │ ├── im │ │ │ ├── osfilterimport.js │ │ │ ├── osfilterimporter.js │ │ │ └── osfilterimportui.js │ │ ├── impl │ │ │ └── ecql │ │ │ │ ├── areaformatter.js │ │ │ │ ├── exclusionformatter.js │ │ │ │ └── filterformatter.js │ │ └── ispatialformatter.js │ ├── fn │ │ └── fn.js │ ├── geo │ │ ├── conv │ │ │ ├── latitudeband.js │ │ │ ├── mgrs.js │ │ │ └── utm.js │ │ ├── export.sh │ │ ├── geo.js │ │ ├── geo2.js │ │ ├── jsts.js │ │ ├── olparser.js │ │ └── parseconf.js │ ├── geom │ │ ├── ellipse.js │ │ └── geometryfield.js │ ├── hist │ │ ├── abstracthistogramdata.js │ │ ├── hist.js │ │ ├── histogramdata.js │ │ ├── ihistogramdata.js │ │ └── ihistogramprovider.js │ ├── histo │ │ ├── bin.js │ │ ├── binmethod.js │ │ ├── binmethodstats.js │ │ ├── binutils.js │ │ ├── countbin.js │ │ ├── datebinmethod.js │ │ ├── datebintype.js │ │ ├── daterangebintype.js │ │ ├── datetext.js │ │ ├── filtercomponent.js │ │ ├── histo.js │ │ ├── histogram.js │ │ ├── ibinmethod.js │ │ ├── numericbinmethod.js │ │ ├── result.js │ │ └── uniquebinmethod.js │ ├── i3dsupport.js │ ├── ianimationsupport.js │ ├── icomparable.js │ ├── igroupable.js │ ├── ilayerdata.js │ ├── im │ │ ├── action │ │ │ ├── abstractimportaction.js │ │ │ ├── cmd │ │ │ │ ├── abstractfilteractioncmd.js │ │ │ │ ├── filteractionaddcmd.js │ │ │ │ └── filteractionremovecmd.js │ │ │ ├── defaultaction.js │ │ │ ├── filteractionentry.js │ │ │ ├── filteractionparser.js │ │ │ ├── iimportaction.js │ │ │ ├── importaction.js │ │ │ ├── importactioncallbackconfig.js │ │ │ ├── importactionevent.js │ │ │ ├── importactioneventtype.js │ │ │ ├── importactionmanager.js │ │ │ └── tagname.js │ │ ├── chainingimporter.js │ │ ├── featureimporter.js │ │ ├── iimporter.js │ │ ├── importer.js │ │ ├── importerevent.js │ │ ├── importprocess.js │ │ └── mapping │ │ │ ├── abstractmapping.js │ │ │ ├── abstractpositionmapping.js │ │ │ ├── altmapping.js │ │ │ ├── altmappingid.js │ │ │ ├── bearingmapping.js │ │ │ ├── datetype.js │ │ │ ├── imapping.js │ │ │ ├── latlonmapping.js │ │ │ ├── latmapping.js │ │ │ ├── location │ │ │ ├── abstractbaselatorlonmapping.js │ │ │ ├── baselatlonmapping.js │ │ │ ├── baselatmapping.js │ │ │ ├── baselonmapping.js │ │ │ ├── basemgrsmapping.js │ │ │ └── basepositionmapping.js │ │ │ ├── lonmapping.js │ │ │ ├── mapping.js │ │ │ ├── mappingmanager.js │ │ │ ├── mappingregistry.js │ │ │ ├── mgrsmapping.js │ │ │ ├── orientationmapping.js │ │ │ ├── positionmapping.js │ │ │ ├── radiusmapping.js │ │ │ ├── renamemapping.js │ │ │ ├── rule.js │ │ │ ├── rulemapping.js │ │ │ ├── semimajormapping.js │ │ │ ├── semiminormapping.js │ │ │ ├── staticmapping.js │ │ │ ├── time │ │ │ ├── datemapping.js │ │ │ ├── datetimemapping.js │ │ │ └── timemapping.js │ │ │ ├── timeformat.js │ │ │ ├── timetype.js │ │ │ └── wktmapping.js │ ├── implements.js │ ├── instanceof.js │ ├── interaction │ │ ├── contextmenuinteraction.js │ │ ├── doubleclickinteraction.js │ │ ├── doubleclickzoominteraction.js │ │ ├── draganddropinteraction.js │ │ ├── dragboxinteraction.js │ │ ├── dragcircleinteraction.js │ │ ├── dragzoominteraction.js │ │ ├── drawlineinteraction.js │ │ ├── drawpolygoninteraction.js │ │ ├── hoverinteraction.js │ │ ├── interaction.js │ │ ├── keyboardpaninteraction.js │ │ ├── keyboardtiltrotateinteraction.js │ │ ├── keyboardzoominteraction.js │ │ ├── measureinteraction.js │ │ ├── modifyinteraction.js │ │ ├── mouserotateinteraction.js │ │ ├── mousezoominteraction.js │ │ ├── pinchzoominteraction.js │ │ ├── resetinteraction.js │ │ └── selectinteraction.js │ ├── interpolate.js │ ├── interpolateconfig.js │ ├── interpolatemethod.js │ ├── ipersistable.js │ ├── ixmlpersistable.js │ ├── job │ │ ├── README.md │ │ ├── job.js │ │ ├── jobcommand.js │ │ ├── jobevent.js │ │ ├── jobeventtype.js │ │ ├── jobmanager.js │ │ ├── jobstate.js │ │ └── testWorker.js │ ├── layer │ │ ├── animatedtile.js │ │ ├── animationoverlay.js │ │ ├── animationoverlayoptions.js │ │ ├── animationvector.js │ │ ├── config │ │ │ ├── abstractdatasourcelayerconfig.js │ │ │ ├── abstractlayerconfig.js │ │ │ ├── abstracttilelayerconfig.js │ │ │ ├── ilayerconfig.js │ │ │ ├── layerconfig.js │ │ │ ├── layerconfigmanager.js │ │ │ └── staticlayerconfig.js │ │ ├── drawinglayer.js │ │ ├── explicitlayertype.js │ │ ├── folder.js │ │ ├── foldermanager.js │ │ ├── foldermenu.js │ │ ├── group.js │ │ ├── icolorablelayer.js │ │ ├── ilayer.js │ │ ├── ilayerprovider.js │ │ ├── image.js │ │ ├── layer.js │ │ ├── layerclass.js │ │ ├── layergroup.js │ │ ├── layerid.js │ │ ├── layertype.js │ │ ├── preset │ │ │ ├── abstractpresetservice.js │ │ │ ├── ipresetservice.js │ │ │ ├── layerpresetmanager.js │ │ │ ├── preset.js │ │ │ ├── presetmenubutton.js │ │ │ └── settingspresetservice.js │ │ ├── propertychange.js │ │ ├── synchronizertype.js │ │ ├── tile.js │ │ ├── vector.js │ │ └── vectortile.js │ ├── legend │ │ ├── ilegendrenderer.js │ │ └── legend.js │ ├── load │ │ ├── iloadingtask.js │ │ ├── loadingevent.js │ │ ├── loadingeventtype.js │ │ ├── loadingmanager.js │ │ └── loadingtask.js │ ├── main.js │ ├── mainctrl.js │ ├── map.js │ ├── map │ │ ├── cameramode.js │ │ ├── flightmode.js │ │ ├── imapcontainer.js │ │ ├── map.js │ │ ├── mapchange.js │ │ ├── mapevent.js │ │ ├── mapinstance.js │ │ ├── mapinteractions.js │ │ ├── mapmode.js │ │ └── terrain.js │ ├── mapcontainer.js │ ├── math │ │ ├── angleunits.js │ │ ├── circle.js │ │ ├── math.js │ │ ├── olunits.js │ │ ├── unitlabels.js │ │ └── units.js │ ├── metrics │ │ ├── adddatametrics.js │ │ ├── filtersmetrics.js │ │ ├── graphitemetricsprovider.js │ │ ├── imetricserviceprovider.js │ │ ├── index.js │ │ ├── layersmetrics.js │ │ ├── mapmetrics.js │ │ ├── metrics.js │ │ ├── metricskeys.js │ │ ├── placesmetrics.js │ │ ├── serversmetrics.js │ │ ├── timelinemetrics.js │ │ └── webglreport.js │ ├── mixin │ │ ├── canvasreplaygroupmixin.js │ │ ├── canvasreplaymixin.js │ │ ├── closuremixin.js │ │ ├── featuremixin.js │ │ ├── fixinjectorinvoke.js │ │ ├── geometrymixin.js │ │ ├── iconimagemixin.js │ │ ├── imagemixin.js │ │ ├── imagesourcemixin.js │ │ ├── jstsmixin.js │ │ ├── layerbasemixin.js │ │ ├── mapmixin.js │ │ ├── mixin.js │ │ ├── objectmixin.js │ │ ├── polygonmixin.js │ │ ├── rbushmixin.js │ │ ├── renderfeaturemixin.js │ │ ├── resolutionconstraintmixin.js │ │ ├── tileimagemixin.js │ │ ├── urltilemixin.js │ │ ├── vectorimagetilemixin.js │ │ └── zoomscalemixin.js │ ├── module.js │ ├── net │ │ ├── abstractmodifier.js │ │ ├── abstractrequesthandler.js │ │ ├── adddefaulthandlers.js │ │ ├── baseservermodifier.js │ │ ├── certnazi.js │ │ ├── certnazihelper.js │ │ ├── certnaziresult.js │ │ ├── connectionconstants.js │ │ ├── credentialshandler.js │ │ ├── crossorigin.js │ │ ├── customformatter.js │ │ ├── extdomainhandler.js │ │ ├── formencformatter.js │ │ ├── handlertype.js │ │ ├── idataformatter.js │ │ ├── imodifier.js │ │ ├── irequesthandler.js │ │ ├── irestful.js │ │ ├── jsonencformatter.js │ │ ├── localfilehandler.js │ │ ├── longpollstream.js │ │ ├── ndjsonencformatter.js │ │ ├── net.js │ │ ├── online.js │ │ ├── onlineeventtype.js │ │ ├── parammodifier.js │ │ ├── proxyhandler.js │ │ ├── request.js │ │ ├── requestevent.js │ │ ├── requesteventtype.js │ │ ├── requesthandlerfactory.js │ │ ├── samedomainhandler.js │ │ ├── statuscodemsg.js │ │ ├── urlmodifier.js │ │ └── variablereplacer.js │ ├── object │ │ └── object.js │ ├── ogc │ │ ├── featuretypecolumn.js │ │ ├── filter │ │ │ ├── modifierconstants.js │ │ │ ├── ogcexclusionformatter.js │ │ │ ├── ogcfiltercleaner.js │ │ │ ├── ogcfilterformatter.js │ │ │ ├── ogcfiltermodifier.js │ │ │ ├── ogcfiltermodifieroptions.js │ │ │ ├── ogcfilteroverride.js │ │ │ └── ogcspatialformatter.js │ │ ├── format.js │ │ ├── ifeaturetype.js │ │ ├── layertype.js │ │ ├── ogc.js │ │ ├── ogcservice.js │ │ ├── query │ │ │ └── ogcquery.js │ │ ├── registry.js │ │ ├── services.js │ │ ├── spatial.js │ │ ├── wfs │ │ │ ├── describefeatureloader.js │ │ │ ├── describefeaturetypeparser.js │ │ │ ├── featuretype.js │ │ │ └── wfsformatter.js │ │ ├── wfstypeconfig.js │ │ ├── wmts │ │ │ ├── abstractwmtslayerparser.js │ │ │ ├── iwmtslayerparser.js │ │ │ ├── wmts.js │ │ │ ├── wmtslayerparsers.js │ │ │ └── wmtslayerparserv100.js │ │ └── wps │ │ │ ├── wps.js │ │ │ └── wpsparams.js │ ├── ol │ │ ├── canvas.js │ │ ├── control │ │ │ └── mousepositioncontrol.js │ │ ├── events.js │ │ ├── events │ │ │ └── condition.js │ │ ├── ext.js │ │ ├── feature.js │ │ ├── image.js │ │ ├── license.js │ │ ├── mixin │ │ │ ├── disposablemixin.js │ │ │ └── rendermixin.js │ │ ├── ol.js │ │ ├── source │ │ │ ├── iloadingsource.js │ │ │ ├── iurlsource.js │ │ │ ├── tileimage.js │ │ │ └── xyzsource.js │ │ ├── typedefs.js │ │ └── wkt.js │ ├── olm │ │ └── render │ │ │ ├── baseshape.js │ │ │ ├── box.js │ │ │ └── circle.js │ ├── operator.js │ ├── os.js │ ├── parse │ │ ├── asyncparser.js │ │ ├── asynczipparser.js │ │ ├── baseparserconfig.js │ │ ├── csv │ │ │ ├── csv.js │ │ │ └── csvparserconfig.js │ │ ├── fileparserconfig.js │ │ ├── iparser.js │ │ ├── rss │ │ │ └── rssparser.js │ │ └── stateparserconfig.js │ ├── plugin │ │ ├── abstractplugin.js │ │ ├── iplugin.js │ │ └── pluginmanager.js │ ├── proj │ │ ├── binnedlayersevent.js │ │ ├── binnedlayerstype.js │ │ ├── commandlistevent.js │ │ ├── proj.js │ │ ├── projswitch.js │ │ ├── reprojection.js │ │ ├── reprojectionwarning.js │ │ └── switchprojection.js │ ├── query │ │ ├── README.md │ │ ├── areamanager.js │ │ ├── baseareamanager.js │ │ ├── basequerymanager.js │ │ ├── ecqlqueryhandler.js │ │ ├── filtermanager.js │ │ ├── itemporalformatter.js │ │ ├── query.js │ │ ├── queryhandler.js │ │ ├── queryinstance.js │ │ ├── querymanager.js │ │ ├── queryutils.js │ │ ├── spatialqueryevent.js │ │ ├── spatialqueryeventtype.js │ │ ├── temporalformatter.js │ │ ├── temporalhandler.js │ │ ├── temporalquerymanager.js │ │ └── ui │ │ │ ├── areaoptionsstep.js │ │ │ ├── areaoptionsstepui.js │ │ │ └── mergeareas.js │ ├── record │ │ ├── irecord.js │ │ └── record.js │ ├── registerclass.js │ ├── search │ │ ├── abstractsearch.js │ │ ├── abstractsearchmanager.js │ │ ├── abstractsearchresult.js │ │ ├── abstracturlsearch.js │ │ ├── appliedfacets.js │ │ ├── basefacet.js │ │ ├── facetdefinition.js │ │ ├── facetresult.js │ │ ├── facetresults.js │ │ ├── facetset.js │ │ ├── favorite.js │ │ ├── featurevaluefacet.js │ │ ├── hiddenfacetcount.js │ │ ├── ifacetedsearch.js │ │ ├── igeosearch.js │ │ ├── iquerystringprovider.js │ │ ├── isearch.js │ │ ├── isearchresult.js │ │ ├── isequentialpagingsearch.js │ │ ├── isortableresult.js │ │ ├── isubsearch.js │ │ ├── itemporalsearch.js │ │ ├── providerresults.js │ │ ├── search.js │ │ ├── searchevent.js │ │ ├── searcheventtype.js │ │ ├── searchfacetdepartment.js │ │ ├── searchmanager.js │ │ ├── searchtermfacet.js │ │ ├── sortorder.js │ │ ├── sorttype.js │ │ ├── subsearchutils.js │ │ └── valuefacet.js │ ├── source │ │ ├── ifilterabletilesource.js │ │ ├── iimportsource.js │ │ ├── imagestatic.js │ │ ├── imodifiablesource.js │ │ ├── importqueuesource.js │ │ ├── isource.js │ │ ├── istylesource.js │ │ ├── multirequestsource.js │ │ ├── propertychange.js │ │ ├── requestsource.js │ │ ├── source.js │ │ ├── sourceclass.js │ │ ├── sourcecolumn.js │ │ ├── vectorsource.js │ │ └── vectortilesource.js │ ├── state │ │ ├── abstractstate.js │ │ ├── basestatemanager.js │ │ ├── istate.js │ │ ├── jsonstate.js │ │ ├── jsonstatemanager.js │ │ ├── jsonstateoptions.js │ │ ├── state.js │ │ ├── statedescriptor.js │ │ ├── stateinstance.js │ │ ├── statemanager.js │ │ ├── stateoptions.js │ │ ├── statetype.js │ │ ├── tag.js │ │ ├── v2 │ │ │ ├── basefilterstate.js │ │ │ ├── exclusionareastate.js │ │ │ ├── exclusiontag.js │ │ │ ├── filterstate.js │ │ │ ├── filtertag.js │ │ │ ├── layerstate.js │ │ │ ├── layertag.js │ │ │ ├── queryareastate.js │ │ │ ├── queryentriesstate.js │ │ │ ├── queryentriestag.js │ │ │ ├── querytag.js │ │ │ ├── timestate.js │ │ │ ├── timetag.js │ │ │ ├── viewprojection.js │ │ │ └── viewstate.js │ │ ├── v3 │ │ │ ├── layerstate.js │ │ │ └── layertag.js │ │ ├── v4 │ │ │ ├── baselayerstate.js │ │ │ ├── baseviewstate.js │ │ │ ├── filteractionstate.js │ │ │ ├── layerstate.js │ │ │ ├── layertag.js │ │ │ ├── queryareastate.js │ │ │ ├── querytag.js │ │ │ ├── timestate.js │ │ │ ├── timetag.js │ │ │ ├── viewprojection.js │ │ │ ├── viewstate.js │ │ │ └── viewtag.js │ │ ├── versions.js │ │ ├── xmlstate.js │ │ ├── xmlstatemanager.js │ │ └── xmlstateoptions.js │ ├── storage │ │ ├── asyncstorage.js │ │ ├── asyncstoragewrapper.js │ │ ├── html5localstorage.js │ │ ├── iasyncstorage.js │ │ ├── idbstorage.js │ │ ├── imechanism.js │ │ ├── objectmechanism.js │ │ ├── prefixedmechanism.js │ │ └── storage.js │ ├── string │ │ ├── pluralize.js │ │ └── string.js │ ├── structs │ │ ├── arraycollection.js │ │ ├── eventtype.js │ │ ├── istatetreenode.js │ │ ├── itreenode.js │ │ ├── itreenodesupplier.js │ │ ├── structs.js │ │ ├── treenode.js │ │ ├── tristate.js │ │ └── tristatetreenode.js │ ├── style │ │ ├── abstractreader.js │ │ ├── areastyle.js │ │ ├── circlereader.js │ │ ├── fallbackiconimage.js │ │ ├── fillreader.js │ │ ├── iconreader.js │ │ ├── iconstyle.js │ │ ├── imagereader.js │ │ ├── istylereader.js │ │ ├── label.js │ │ ├── shapereader.js │ │ ├── strokereader.js │ │ ├── style.js │ │ ├── styledefaults.js │ │ ├── stylefield.js │ │ ├── styleinstance.js │ │ ├── stylemanager.js │ │ ├── stylemanager_shim.js │ │ ├── stylereader.js │ │ ├── styletype.js │ │ └── textreader.js │ ├── tag │ │ └── tag.js │ ├── thread │ │ ├── eventtype.js │ │ ├── ithreadjob.js │ │ ├── thread.js │ │ ├── threadevent.js │ │ └── threadprogressevent.js │ ├── tile │ │ ├── colorabletile.js │ │ └── tile.js │ ├── tileclass.js │ ├── time │ │ ├── duration.js │ │ ├── itime.js │ │ ├── time.js │ │ ├── timeinstant.js │ │ ├── timeline.js │ │ ├── timelineactioneventtype.js │ │ ├── timelinecontroller.js │ │ ├── timelinecontrollerevent.js │ │ ├── timelineeventtype.js │ │ ├── timeperiod.js │ │ ├── timerange.js │ │ ├── timerangepresets.js │ │ ├── timereplacers.js │ │ ├── unboundedrange.js │ │ └── xf │ │ │ ├── timemodel.js │ │ │ └── xf.js │ ├── track │ │ ├── addoptions.js │ │ ├── createoptions.js │ │ ├── splitoptions.js │ │ ├── track.js │ │ ├── trackfeaturelike.js │ │ ├── trackfield.js │ │ └── tracklike.js │ ├── ui │ │ ├── abstractmaincontent.js │ │ ├── abstractmainctrl.js │ │ ├── abstractservice.js │ │ ├── action │ │ │ ├── action.js │ │ │ ├── actionevent.js │ │ │ ├── actioneventtype.js │ │ │ ├── actionmanager.js │ │ │ ├── iactiontarget.js │ │ │ ├── imenuitem.js │ │ │ ├── menuitem.js │ │ │ ├── menuitemaction.js │ │ │ ├── menuitemlist.js │ │ │ ├── menuitemseparator.js │ │ │ ├── menuitemseparatorheader.js │ │ │ └── menuoptions.js │ │ ├── actionmenu.js │ │ ├── adddata.js │ │ ├── adddatabutton.js │ │ ├── addfilter.js │ │ ├── alert │ │ │ ├── alertbadge.js │ │ │ ├── alertbutton.js │ │ │ ├── alertlinkfilter.js │ │ │ └── alertpopup.js │ │ ├── alerts.js │ │ ├── animationsettings.js │ │ ├── arc │ │ │ └── iarcdescriptor.js │ │ ├── areas.js │ │ ├── binddirective.js │ │ ├── buffer │ │ │ ├── bufferdialog.js │ │ │ └── bufferform.js │ │ ├── capture │ │ │ ├── abstractcaptureplugin.js │ │ │ ├── canvasrenderer.js │ │ │ ├── elementrenderer.js │ │ │ ├── htmlrenderer.js │ │ │ ├── recordingui.js │ │ │ ├── svgrenderer.js │ │ │ └── timelinerenderer.js │ │ ├── checklist.js │ │ ├── checklistevent.js │ │ ├── clear │ │ │ ├── clear.js │ │ │ ├── clearbutton.js │ │ │ ├── clearentry.js │ │ │ └── clearmanager.js │ │ ├── clipboard │ │ │ └── clipboard.js │ │ ├── color │ │ │ ├── colorpalette.js │ │ │ ├── colorpaletteeventtype.js │ │ │ └── colorpicker.js │ │ ├── colorcontroltype.js │ │ ├── column │ │ │ ├── column.js │ │ │ ├── columnmanager.js │ │ │ ├── columnpicker.js │ │ │ ├── columnrow.js │ │ │ └── mapping │ │ │ │ ├── columnmappingexport.js │ │ │ │ ├── columnmappingform.js │ │ │ │ ├── columnmappingimportui.js │ │ │ │ ├── columnmappingnode.js │ │ │ │ ├── columnmappingnodeui.js │ │ │ │ ├── columnmappingsettings.js │ │ │ │ ├── columnmappingsettingsui.js │ │ │ │ ├── columnmodelnode.js │ │ │ │ ├── columnmodeltree.js │ │ │ │ └── mappingexpression.js │ │ ├── columnactions │ │ │ ├── abstractcolumnaction.js │ │ │ ├── actions │ │ │ │ └── urlcolumnaction.js │ │ │ ├── columnactionevent.js │ │ │ ├── columnactionformatterfn.js │ │ │ ├── columnactionmanager.js │ │ │ ├── columnactionprompt.js │ │ │ ├── icolumnactionmodel.js │ │ │ ├── launchcolumnactionprompt.js │ │ │ └── simplecolumnactionmodel.js │ │ ├── config │ │ │ ├── abstractsettings.js │ │ │ ├── angularappsettingsinitializer.js │ │ │ ├── settingdefaulttreeui.js │ │ │ ├── settingnode.js │ │ │ ├── settingplugin.js │ │ │ ├── settingscontainer.js │ │ │ ├── settingsmanager.js │ │ │ ├── settingsmanagerevent.js │ │ │ ├── settingsmanagereventtype.js │ │ │ ├── settingswindow.js │ │ │ └── settingswindowlist.js │ │ ├── consent.js │ │ ├── controltype.js │ │ ├── data │ │ │ ├── addcolumn.js │ │ │ ├── addcolumnform.js │ │ │ ├── adddatactrl.js │ │ │ ├── baseprovider.js │ │ │ ├── descriptornode.js │ │ │ ├── descriptornodeui.js │ │ │ ├── descriptorprovider.js │ │ │ ├── groupby │ │ │ │ └── taggroupby.js │ │ │ └── layercheckbox.js │ │ ├── datepanel.js │ │ ├── datetime │ │ │ ├── anydate.js │ │ │ ├── anydatehelp.js │ │ │ ├── anydatetype.js │ │ │ ├── datecontrol.js │ │ │ ├── datecustom.js │ │ │ ├── datetime.js │ │ │ ├── duration.js │ │ │ ├── startenddate.js │ │ │ └── wheeldate.js │ │ ├── descriptionformatter.js │ │ ├── descriptioninfo.js │ │ ├── dockedwindowui.js │ │ ├── dragdrop │ │ │ ├── dragdrop.js │ │ │ ├── dragdropstyle.js │ │ │ ├── dragdropui.js │ │ │ ├── urldragdrop.js │ │ │ └── urldragdropui.js │ │ ├── draw │ │ │ ├── basedrawcontrols.js │ │ │ ├── draw.js │ │ │ ├── drawcontrols.js │ │ │ ├── drawevent.js │ │ │ ├── draweventtype.js │ │ │ ├── drawpicker.js │ │ │ └── eventtype.js │ │ ├── events │ │ │ ├── scrollevent.js │ │ │ ├── uievent.js │ │ │ ├── uieventparams.js │ │ │ └── uieventtype.js │ │ ├── eventtype.js │ │ ├── ex │ │ │ ├── addexportoptionsui.js │ │ │ ├── areaexportdialog.js │ │ │ ├── exportdialog.js │ │ │ ├── exportoptions.js │ │ │ └── exportoptionsevent.js │ │ ├── feature │ │ │ ├── featureinfo.js │ │ │ ├── featureinfocell.js │ │ │ ├── featureinfoevent.js │ │ │ ├── featureinfotabmanager.js │ │ │ ├── launchmultifeatureinfo.js │ │ │ ├── multifeatureinfo.js │ │ │ ├── simplepropertiesui.js │ │ │ └── tab │ │ │ │ ├── abstractfeaturetabctrl.js │ │ │ │ ├── descriptionenablefunction.js │ │ │ │ ├── descriptiontab.js │ │ │ │ └── propertiestab.js │ │ ├── featureedit.js │ │ ├── featureeditfield.js │ │ ├── featurelist.js │ │ ├── file │ │ │ ├── addserver.js │ │ │ ├── anytypeimport.js │ │ │ ├── anytypeimportui.js │ │ │ ├── csv │ │ │ │ ├── abstractcsvexporter.js │ │ │ │ ├── abstractcsvparser.js │ │ │ │ └── csv.js │ │ │ ├── draganddropicon.js │ │ │ ├── exportdialog.js │ │ │ ├── exportmanager.js │ │ │ ├── exportstatus.js │ │ │ ├── fileimport.js │ │ │ ├── filexthandler.js │ │ │ ├── gml │ │ │ │ └── gmlparser.js │ │ │ ├── importdialog.js │ │ │ ├── kml │ │ │ │ ├── abstractkmlexporter.js │ │ │ │ └── kml.js │ │ │ ├── maki │ │ │ │ └── maki.js │ │ │ ├── method │ │ │ │ ├── filemethod.js │ │ │ │ ├── importmethod.js │ │ │ │ ├── urlmethod.js │ │ │ │ └── urlnofailmethod.js │ │ │ ├── ui │ │ │ │ ├── abstractfileimport.js │ │ │ │ ├── csv │ │ │ │ │ ├── configstep.js │ │ │ │ │ └── configstepui.js │ │ │ │ └── defaultfilenodeui.js │ │ │ ├── uiexportmanager.js │ │ │ └── urlimport.js │ │ ├── filter │ │ │ ├── advancedfilterbuilder.js │ │ │ ├── basicfilterbuilder.js │ │ │ ├── basicfiltertree.js │ │ │ ├── between.js │ │ │ ├── coltypecheckvalidation.js │ │ │ ├── coltypelistui.js │ │ │ ├── expression.js │ │ │ ├── expressionui.js │ │ │ ├── filter.js │ │ │ ├── filterevent.js │ │ │ ├── filtereventtype.js │ │ │ ├── filterfn.js │ │ │ ├── filterimportevent.js │ │ │ ├── filterpatterns.js │ │ │ ├── filterstring.js │ │ │ ├── filtertree.js │ │ │ ├── filtertreesearch.js │ │ │ ├── im │ │ │ │ ├── filterimport.js │ │ │ │ ├── filterimporter.js │ │ │ │ ├── filterimportmodel.js │ │ │ │ └── filterimportui.js │ │ │ ├── list.js │ │ │ ├── listnocolcheck.js │ │ │ ├── op │ │ │ │ ├── betweenop.js │ │ │ │ ├── equaltoop.js │ │ │ │ ├── greaterthanop.js │ │ │ │ ├── greaterthanorequaltoop.js │ │ │ │ ├── inlistop.js │ │ │ │ ├── isfalseop.js │ │ │ │ ├── islikenumericop.js │ │ │ │ ├── islikeop.js │ │ │ │ ├── isnullop.js │ │ │ │ ├── istrueop.js │ │ │ │ ├── lessthanop.js │ │ │ │ ├── lessthanorequaltoop.js │ │ │ │ ├── likelistnumericop.js │ │ │ │ ├── likelistop.js │ │ │ │ ├── notbetweenop.js │ │ │ │ ├── notequaltoop.js │ │ │ │ ├── notlikeop.js │ │ │ │ ├── notnullop.js │ │ │ │ ├── notop.js │ │ │ │ ├── op.js │ │ │ │ ├── opuiswitch.js │ │ │ │ ├── ruleop.js │ │ │ │ └── time │ │ │ │ │ ├── betweentime.js │ │ │ │ │ ├── betweentimeop.js │ │ │ │ │ ├── newerolderthan.js │ │ │ │ │ ├── newerthanop.js │ │ │ │ │ └── olderthanop.js │ │ │ ├── parse │ │ │ │ └── filterparser.js │ │ │ ├── propertychange.js │ │ │ ├── ruleexpression.js │ │ │ ├── ruleexpressionui.js │ │ │ ├── text.js │ │ │ ├── textnocolcheck.js │ │ │ └── ui │ │ │ │ ├── copyfilter.js │ │ │ │ ├── copyfilterpicker.js │ │ │ │ ├── copyfilterpickermodel.js │ │ │ │ ├── editfilters.js │ │ │ │ ├── expressionnode.js │ │ │ │ ├── expressionnodeui.js │ │ │ │ ├── expressionnodeviewui.js │ │ │ │ ├── filterabledescriptornodeui.js │ │ │ │ ├── filterexport.js │ │ │ │ ├── filterexportchoice.js │ │ │ │ ├── filtergroupby.js │ │ │ │ ├── filtergroupui.js │ │ │ │ ├── filternode.js │ │ │ │ ├── filternodeui.js │ │ │ │ ├── filtertypegroupby.js │ │ │ │ ├── groupnode.js │ │ │ │ ├── groupnodeui.js │ │ │ │ ├── groupnodeviewui.js │ │ │ │ └── viewfilters.js │ │ ├── filterlayergroupby.js │ │ ├── filters.js │ │ ├── formatter.js │ │ ├── geo │ │ │ ├── geo.js │ │ │ ├── geoui.js │ │ │ ├── mgrs.js │ │ │ ├── position.js │ │ │ ├── positioneventtype.js │ │ │ └── ringoptions.js │ │ ├── globalmenu.js │ │ ├── globalmenueventtype.js │ │ ├── header │ │ │ ├── scrollheader.js │ │ │ └── scrollheaderevents.js │ │ ├── headerbtnconfig.js │ │ ├── help │ │ │ ├── controlblock.js │ │ │ ├── controls.js │ │ │ ├── controlsui.js │ │ │ ├── help.js │ │ │ ├── helpeventtype.js │ │ │ ├── helpui.js │ │ │ ├── metricsoption.js │ │ │ ├── misconfigured.js │ │ │ ├── misconfiguredui.js │ │ │ ├── supportmsg.js │ │ │ ├── webglperfcaveat.js │ │ │ └── webglsupport.js │ │ ├── hist │ │ │ ├── barchartoptions.js │ │ │ ├── hist.js │ │ │ ├── histogrameventtype.js │ │ │ ├── horizontalbarchart.js │ │ │ ├── ihistogramchart.js │ │ │ ├── ihistogrammanager.js │ │ │ ├── linechart.js │ │ │ └── stackedbarchart.js │ │ ├── history │ │ │ ├── historybutton.js │ │ │ └── historyview.js │ │ ├── icon │ │ │ ├── iconpalette.js │ │ │ ├── iconpicker.js │ │ │ ├── iconpickereventtype.js │ │ │ ├── iconselector.js │ │ │ └── iconselectormanager.js │ │ ├── icons.js │ │ ├── icons │ │ │ └── index.js │ │ ├── iconssvg.js │ │ ├── ihistogramctrl.js │ │ ├── ilayeruiprovider.js │ │ ├── im │ │ │ ├── abstractimportui.js │ │ │ ├── abstractmapperctrl.js │ │ │ ├── action │ │ │ │ ├── editfilteraction.js │ │ │ │ ├── eventtype.js │ │ │ │ ├── exporttypehint.js │ │ │ │ ├── filteraction.js │ │ │ │ ├── filteractionexport.js │ │ │ │ ├── filteractionexporttype.js │ │ │ │ ├── filteractionimport.js │ │ │ │ ├── filteractionimporter.js │ │ │ │ ├── filteractionimportui.js │ │ │ │ ├── filteractionnode.js │ │ │ │ ├── filteractionnodeui.js │ │ │ │ ├── filteractionsui.js │ │ │ │ ├── filteractiontreesearch.js │ │ │ │ └── filteractionui.js │ │ │ ├── audioimportui.js │ │ │ ├── basicinfo.js │ │ │ ├── duplicatealwaysreimportprocess.js │ │ │ ├── duplicateimportprocess.js │ │ │ ├── fileexists.js │ │ │ ├── fileexistschoice.js │ │ │ ├── fileimportui.js │ │ │ ├── fileimportwizard.js │ │ │ ├── filesupport.js │ │ │ ├── filesupportchoice.js │ │ │ ├── iimportui.js │ │ │ ├── importerconfig.js │ │ │ ├── importevent.js │ │ │ ├── importeventtype.js │ │ │ ├── importmanager.js │ │ │ ├── importprocess.js │ │ │ ├── mapping │ │ │ │ └── time │ │ │ │ │ └── timemappingmodel.js │ │ │ ├── mergeareaoption.js │ │ │ ├── urlexists.js │ │ │ └── urlexistschoice.js │ │ ├── iscrolldatasource.js │ │ ├── layer │ │ │ ├── abstractlayerui.js │ │ │ ├── columnsuggestionselect.js │ │ │ ├── compare │ │ │ │ ├── layercomparenode.js │ │ │ │ └── layercompareui.js │ │ │ ├── defaultlayerui.js │ │ │ ├── ellipsecolumns.js │ │ │ ├── ellipseoptions.js │ │ │ ├── iconstylecontrols.js │ │ │ ├── imagelayerui.js │ │ │ ├── labelcontrols.js │ │ │ ├── labelcontrolseventtype.js │ │ │ ├── layerpicker.js │ │ │ ├── layers.js │ │ │ ├── layervisibility.js │ │ │ ├── loboptions.js │ │ │ ├── tilelayerui.js │ │ │ ├── vectorlayerui.js │ │ │ ├── vectorstylecontrols.js │ │ │ └── vectorstylecontrolseventtype.js │ │ ├── layers.js │ │ ├── layersbutton.js │ │ ├── layerswindow.js │ │ ├── layertree.js │ │ ├── legend.js │ │ ├── legendbutton.js │ │ ├── list.js │ │ ├── listeventtype.js │ │ ├── listui.js │ │ ├── load │ │ │ └── loading.js │ │ ├── loadingbar.js │ │ ├── location │ │ │ ├── ddmfilter.js │ │ │ ├── ddmlatfilter.js │ │ │ ├── ddmlonfilter.js │ │ │ ├── degfilter.js │ │ │ ├── deglatfilter.js │ │ │ ├── deglonfilter.js │ │ │ ├── dmsfilter.js │ │ │ ├── dmslatfilter.js │ │ │ ├── dmslonfilter.js │ │ │ ├── location.js │ │ │ ├── locationformat.js │ │ │ ├── mgrsfilter.js │ │ │ ├── simplelocation.js │ │ │ └── simplelocationcontrols.js │ │ ├── map.js │ │ ├── measurebutton.js │ │ ├── menu │ │ │ ├── areaimportmenu.js │ │ │ ├── buffermenu.js │ │ │ ├── commonmenu.js │ │ │ ├── defaultwindowsmenu.js │ │ │ ├── drawmenu.js │ │ │ ├── featuremenu.js │ │ │ ├── filtermenu.js │ │ │ ├── grouptype.js │ │ │ ├── imenusupplier.js │ │ │ ├── importmenu.js │ │ │ ├── layermenu.js │ │ │ ├── listmenu.js │ │ │ ├── mapmenu.js │ │ │ ├── menu.js │ │ │ ├── menubutton.js │ │ │ ├── menuevent.js │ │ │ ├── menueventtype.js │ │ │ ├── menuitem.js │ │ │ ├── menuitemoptions.js │ │ │ ├── menuitemtype.js │ │ │ ├── savemenu.js │ │ │ ├── spatial.js │ │ │ ├── spatialmenu.js │ │ │ ├── timelinemenu.js │ │ │ ├── unclickabletypes.js │ │ │ ├── unitmenu.js │ │ │ └── windowsmenu.js │ │ ├── menubutton.js │ │ ├── metrics │ │ │ ├── metriccompletion.js │ │ │ ├── metricdetails.js │ │ │ ├── metricnode.js │ │ │ ├── metricnodeoptions.js │ │ │ ├── metricscontainer.js │ │ │ ├── metricsmanager.js │ │ │ ├── metricsmanagerevent.js │ │ │ ├── metricsmanagereventtype.js │ │ │ ├── metricsplugin.js │ │ │ └── metricsui.js │ │ ├── modal │ │ │ ├── aboutmodal.js │ │ │ ├── confirmationmodal.js │ │ │ ├── modal.js │ │ │ └── modalautosize.js │ │ ├── module.js │ │ ├── multiurlproviderimport.js │ │ ├── mutebutton.js │ │ ├── nav │ │ │ ├── navbarctrl.js │ │ │ ├── navbarevent.js │ │ │ ├── navbareventtype.js │ │ │ ├── navbaroptions.js │ │ │ ├── navbaroptionssearchbox.js │ │ │ ├── navbottom.js │ │ │ ├── navlocation.js │ │ │ ├── navtop.js │ │ │ └── osnavtop.js │ │ ├── ngrightclick.js │ │ ├── node │ │ │ ├── areanodeui.js │ │ │ ├── defaultlayernodeui.js │ │ │ ├── drawingfeaturenodeui.js │ │ │ ├── featurecount.js │ │ │ ├── foldernodeui.js │ │ │ ├── layertype.js │ │ │ └── tileloading.js │ │ ├── nodeicons.js │ │ ├── nodespinner.js │ │ ├── nodetoggle.js │ │ ├── nodetogglefolder.js │ │ ├── notification │ │ │ ├── notificationindicator.js │ │ │ └── notificationmanager.js │ │ ├── ogc │ │ │ ├── ifeaturetypedescriptor.js │ │ │ ├── iogcdescriptor.js │ │ │ ├── ogcdescriptor.js │ │ │ ├── ogclistui.js │ │ │ ├── ogcserver.js │ │ │ ├── query │ │ │ │ └── ogcqueryhandler.js │ │ │ └── wms │ │ │ │ ├── abstractwmslayerparser.js │ │ │ │ ├── iwmslayer.js │ │ │ │ ├── iwmslayerparser.js │ │ │ │ ├── layerparsers.js │ │ │ │ ├── wmslayerparserv111.js │ │ │ │ └── wmslayerparserv130.js │ │ ├── ol │ │ │ ├── control │ │ │ │ └── layerswitcher.js │ │ │ ├── interaction │ │ │ │ ├── abstractdraginteraction.js │ │ │ │ ├── abstractdrawinteraction.js │ │ │ │ ├── areahoverinteraction.js │ │ │ │ ├── contextmenuinteraction.js │ │ │ │ ├── contextmenuoptions.js │ │ │ │ ├── dragboxinteraction.js │ │ │ │ ├── dragcircleinteraction.js │ │ │ │ ├── drawpolygoninteraction.js │ │ │ │ ├── focusinteraction.js │ │ │ │ ├── interaction.js │ │ │ │ └── mousewheelzoominteraction.js │ │ │ └── olmap.js │ │ ├── onboarding │ │ │ ├── contextonboarding.js │ │ │ ├── ngonboarding.js │ │ │ ├── onboarding.js │ │ │ ├── onboardingevent.js │ │ │ ├── onboardingmanager.js │ │ │ └── onboardingurlhandler.js │ │ ├── pagingbar.js │ │ ├── popover │ │ │ └── popover.js │ │ ├── propertiesformatter.js │ │ ├── propertyinfo.js │ │ ├── providerimport.js │ │ ├── providerimportui.js │ │ ├── query │ │ │ ├── abstractqueryreader.js │ │ │ ├── activeentries.js │ │ │ ├── addfilter.js │ │ │ ├── area │ │ │ │ ├── choosearea.js │ │ │ │ ├── getuserarea.js │ │ │ │ ├── launchchoosearea.js │ │ │ │ └── userarea.js │ │ │ ├── areaimportctrl.js │ │ │ ├── areanode.js │ │ │ ├── areatreesearch.js │ │ │ ├── basecombinator.js │ │ │ ├── basicqueryreader.js │ │ │ ├── cmd │ │ │ │ ├── abstractareacmd.js │ │ │ │ ├── abstractfiltercmd.js │ │ │ │ ├── areaaddcmd.js │ │ │ │ ├── areamodifycmd.js │ │ │ │ ├── arearemovecmd.js │ │ │ │ ├── filteraddcmd.js │ │ │ │ ├── filterremovecmd.js │ │ │ │ ├── queryentriesclearcmd.js │ │ │ │ └── queryentriescmd.js │ │ │ ├── combinator.js │ │ │ ├── combonode.js │ │ │ ├── combonodeui.js │ │ │ ├── editarea.js │ │ │ ├── iqueryreader.js │ │ │ ├── modifyarea.js │ │ │ ├── query.js │ │ │ └── queryhandler.js │ │ ├── renamelayer.js │ │ ├── resizeeventtype.js │ │ ├── route │ │ │ └── routemanager.js │ │ ├── savebutton.js │ │ ├── savedwindowui.js │ │ ├── scaleline.js │ │ ├── screenoverlay.js │ │ ├── search │ │ │ ├── basicresultcard.js │ │ │ ├── facetedsearch.js │ │ │ ├── facetnode.js │ │ │ ├── featureresultcard.js │ │ │ ├── noresult.js │ │ │ ├── place │ │ │ │ ├── coordinateresult.js │ │ │ │ ├── coordinateresultcard.js │ │ │ │ ├── coordinatesearch.js │ │ │ │ └── place.js │ │ │ ├── resultcard.js │ │ │ ├── searchbox.js │ │ │ ├── searchresults.js │ │ │ └── searchscrolldatasource.js │ │ ├── server │ │ │ └── abstractloadingserver.js │ │ ├── servers.js │ │ ├── serversbutton.js │ │ ├── settingsbutton.js │ │ ├── singleurlform.js │ │ ├── singleurlproviderimport.js │ │ ├── sitemessage │ │ │ ├── reminderschedule.js │ │ │ ├── sitemessage.js │ │ │ ├── sitemessageui.js │ │ │ └── sitemessageutils.js │ │ ├── slick │ │ │ ├── abstractgroupbytreesearch.js │ │ │ ├── abstractgroupbytreesearchctrl.js │ │ │ ├── abstractnodeui.js │ │ │ ├── asyncrenderer.js │ │ │ ├── column.js │ │ │ ├── columncontext.js │ │ │ ├── columneventtype.js │ │ │ ├── columnmenugroup.js │ │ │ ├── formatter.js │ │ │ ├── loadingnode.js │ │ │ ├── slickcolumnactionmodel.js │ │ │ ├── slickgrid.js │ │ │ ├── slickgridevent.js │ │ │ ├── slickheaderbutton.js │ │ │ ├── slicktree.js │ │ │ ├── slicktreenode.js │ │ │ └── treesearch.js │ │ ├── slickdescriptionasyncrenderer.js │ │ ├── slickpropertiesasyncrenderer.js │ │ ├── slider.js │ │ ├── sourceaware.js │ │ ├── sourcegrid.js │ │ ├── spinner.js │ │ ├── state │ │ │ ├── abstractstatedescriptor.js │ │ │ ├── abstractstateform.js │ │ │ ├── cmd │ │ │ │ ├── stateclearcmd.js │ │ │ │ └── statedeletecmd.js │ │ │ ├── istatedescriptor.js │ │ │ ├── state.js │ │ │ ├── stateexport.js │ │ │ ├── stateimport.js │ │ │ ├── stateimportui.js │ │ │ ├── statelist.js │ │ │ ├── statelistevent.js │ │ │ ├── statemenu.js │ │ │ ├── stateprovider.js │ │ │ └── statetitle.js │ │ ├── statebutton.js │ │ ├── tab │ │ │ ├── featuretab.js │ │ │ └── tab.js │ │ ├── text │ │ │ ├── text.js │ │ │ ├── tuieditor.js │ │ │ ├── tuieditorlang.js │ │ │ ├── tuieditormarkdownit.js │ │ │ └── tuieditorui.js │ │ ├── textprompt.js │ │ ├── time │ │ │ └── time.js │ │ ├── timeline │ │ │ ├── abstracttimelinectrl.js │ │ │ ├── baseitem.js │ │ │ ├── brush.js │ │ │ ├── brusheventtype.js │ │ │ ├── currenttimemarker.js │ │ │ ├── dragpanevent.js │ │ │ ├── dragpaneventtype.js │ │ │ ├── idragpanitem.js │ │ │ ├── itimelineitem.js │ │ │ ├── offarrows.js │ │ │ ├── selectbrush.js │ │ │ ├── tileaxis.js │ │ │ ├── timeline.js │ │ │ ├── timelinescaleevent.js │ │ │ ├── timelinescaleoptions.js │ │ │ └── timelineui.js │ │ ├── timelinepanel.js │ │ ├── timelinesettings.js │ │ ├── tristatecheckbox.js │ │ ├── twocolumninfo.js │ │ ├── ui.js │ │ ├── uiswitch.js │ │ ├── uiswitcheventtype.js │ │ ├── uniqueprovidertitle.js │ │ ├── uniqueserverurl.js │ │ ├── user │ │ │ └── settings │ │ │ │ ├── locationsettings.js │ │ │ │ └── locationsettingsui.js │ │ ├── util │ │ │ ├── angularfilters.js │ │ │ ├── arrayscrolldatasource.js │ │ │ ├── arrayscrolldatasourcefactory.js │ │ │ ├── autoheight.js │ │ │ ├── autovheight.js │ │ │ ├── combocontainer.js │ │ │ ├── deprecated.js │ │ │ ├── linky.js │ │ │ ├── offsetmargin.js │ │ │ ├── punyparent.js │ │ │ ├── resetsettings.js │ │ │ ├── scrollfocus.js │ │ │ └── validationmessage.js │ │ ├── window.js │ │ ├── window │ │ │ ├── basewindowui.js │ │ │ ├── confirm.js │ │ │ ├── confirmcolor.js │ │ │ ├── confirmcolumn.js │ │ │ ├── confirmcolumnoptions.js │ │ │ ├── confirmtext.js │ │ │ ├── geohelp.js │ │ │ └── timehelp.js │ │ ├── windowcommonelements.js │ │ ├── windowcommonoptionalelements.js │ │ ├── windoweventtype.js │ │ ├── windowlauncher.js │ │ ├── windowsbutton.js │ │ ├── windowselector.js │ │ ├── windowui.js │ │ ├── windowzindexmax.js │ │ └── wiz │ │ │ ├── geometrystep.js │ │ │ ├── geometrystepui.js │ │ │ ├── optionsstep.js │ │ │ ├── optionsstepui.js │ │ │ ├── step │ │ │ ├── abstractwizardstep.js │ │ │ ├── abstractwizardstepctrl.js │ │ │ ├── iwizardstep.js │ │ │ ├── timeinstantui.js │ │ │ ├── timestep.js │ │ │ ├── timestepui.js │ │ │ └── wizardstepevent.js │ │ │ ├── wizard.js │ │ │ └── wizardpreview.js │ ├── unit │ │ ├── baseunit.js │ │ ├── englishdistanceunits.js │ │ ├── feetunits.js │ │ ├── imultiplier.js │ │ ├── iunit.js │ │ ├── metricunits.js │ │ ├── mileunits.js │ │ ├── multiplier.js │ │ ├── nauticalmileunits.js │ │ ├── nauticalunits.js │ │ ├── unit.js │ │ ├── unitchange.js │ │ ├── unitfactory.js │ │ ├── unitmanager.js │ │ ├── usdistanceunits.js │ │ └── yardunits.js │ ├── uri │ │ └── uri.js │ ├── url │ │ ├── abstracturlhandler.js │ │ ├── eventtype.js │ │ ├── url.js │ │ ├── urlevent.js │ │ └── urlmanager.js │ ├── user │ │ └── settings │ │ │ ├── favorite.js │ │ │ ├── favoritemanager.js │ │ │ └── favoritetype.js │ ├── webgl │ │ ├── abstractrootsynchronizer.js │ │ ├── abstractsynchronizer.js │ │ ├── abstractwebglrenderer.js │ │ ├── altitudemode.js │ │ ├── iwebglcamera.js │ │ ├── iwebglrenderer.js │ │ ├── launch2dperfdialog.js │ │ ├── synchronizermanager.js │ │ ├── webgl.js │ │ └── webgloverlay.js │ ├── worker.js │ ├── xml.js │ ├── xsd.js │ └── xt │ │ ├── README.md │ │ ├── events.js │ │ ├── imessagehandler.js │ │ ├── peer.js │ │ ├── peerinfo.js │ │ ├── xt-example.html │ │ └── xt.js ├── plugin │ ├── arc │ │ ├── arc.js │ │ ├── arcfeaturetype.js │ │ ├── arcjsonparser.js │ │ ├── arcloader.js │ │ ├── arcplugin.js │ │ ├── arcserver.js │ │ ├── arcserverhelp.js │ │ ├── arcserverimport.js │ │ ├── arcserverimportform.js │ │ ├── esritype.js │ │ ├── iarcloader.js │ │ ├── layer │ │ │ ├── animatedarctilelayer.js │ │ │ ├── arcfeaturelayerconfig.js │ │ │ ├── arcimagelayerconfig.js │ │ │ ├── arclayerdescriptor.js │ │ │ └── arctilelayerconfig.js │ │ ├── mime.js │ │ ├── node │ │ │ ├── arcfoldernode.js │ │ │ └── arcservicenode.js │ │ ├── query │ │ │ ├── arcfiltermodifier.js │ │ │ ├── arcqueryhandler.js │ │ │ ├── arcspatialformatter.js │ │ │ ├── arcspatialmodifier.js │ │ │ └── arctemporalformatter.js │ │ ├── source │ │ │ ├── arcrequestsource.js │ │ │ └── arctilesource.js │ │ └── state │ │ │ └── v2 │ │ │ └── arcstate.js │ ├── area │ │ ├── area.js │ │ ├── areaimportctrl.js │ │ ├── areaplugin.js │ │ ├── csvareaimport.js │ │ ├── csvareaimportui.js │ │ ├── geojsonareaimport.js │ │ ├── geojsonareaimportui.js │ │ ├── kmlareaimportui.js │ │ ├── kmlareaparser.js │ │ ├── kmlareaui.js │ │ ├── shpareaimportui.js │ │ └── shpareaui.js │ ├── areadata │ │ ├── areadata.js │ │ └── areadataplugin.js │ ├── audio │ │ ├── audioplugin.js │ │ └── mime.js │ ├── basemap │ │ ├── basemap.js │ │ ├── basemapconfig.js │ │ ├── basemapdescriptor.js │ │ ├── basemapgroup.js │ │ ├── basemapplugin.js │ │ ├── basemapprovider.js │ │ ├── layer │ │ │ └── basemaplayer.js │ │ ├── terraindescriptor.js │ │ ├── terrainlayernodeui.js │ │ ├── ui │ │ │ └── basemaplayerui.js │ │ ├── v2 │ │ │ ├── basemapstate.js │ │ │ └── basemaptag.js │ │ ├── v3 │ │ │ ├── basemapstate.js │ │ │ └── basemaptag.js │ │ └── v4 │ │ │ ├── basemapstate.js │ │ │ └── basemaptag.js │ ├── capture │ │ ├── annotationtailrenderer.js │ │ ├── capture.js │ │ ├── captureplugin.js │ │ ├── legendrenderer.js │ │ ├── mapoverlayrenderer.js │ │ ├── mapoverviewrenderer.js │ │ ├── maprenderer.js │ │ └── timelinerecorder.js │ ├── cesium │ │ ├── abstractterrainprovider.js │ │ ├── cesium.js │ │ ├── cesiumcamera.js │ │ ├── cesiummenu.js │ │ ├── cesiumplugin.js │ │ ├── cesiumrenderer.js │ │ ├── command │ │ │ └── flytospherecmd.js │ │ ├── imageryprovider.js │ │ ├── importionasset.js │ │ ├── interaction │ │ │ ├── cesiumdragboxinteraction.js │ │ │ ├── cesiumdragcircleinteraction.js │ │ │ ├── cesiumdrawpolygoninteraction.js │ │ │ ├── cesiuminteraction.js │ │ │ └── cesiummeasureinteraction.js │ │ ├── layer.js │ │ ├── mixin │ │ │ ├── cesiummixin.js │ │ │ ├── olcesiummixin.js │ │ │ └── renderloopmixin.js │ │ ├── primitive.js │ │ ├── primitivelayer.js │ │ ├── sync │ │ │ ├── baseconverter.js │ │ │ ├── cesiumsynchronizer.js │ │ │ ├── converter.js │ │ │ ├── dynamiclinestring.js │ │ │ ├── dynamiclinestringconverter.js │ │ │ ├── dynamicmultipolygonconverter.js │ │ │ ├── dynamicpolygonconverter.js │ │ │ ├── ellipseconverter.js │ │ │ ├── ellipsoid.js │ │ │ ├── ellipsoidconverter.js │ │ │ ├── featureconverter.js │ │ │ ├── geometrycollectionconverter.js │ │ │ ├── gettransformfunction.js │ │ │ ├── heatmapsynchronizer.js │ │ │ ├── heightreference.js │ │ │ ├── iconverter.js │ │ │ ├── imagestaticsynchronizer.js │ │ │ ├── imagesynchronizer.js │ │ │ ├── labelconverter.js │ │ │ ├── linestring.js │ │ │ ├── linestringconverter.js │ │ │ ├── multidynamiclinestringconverter.js │ │ │ ├── multilinestringconverter.js │ │ │ ├── multipointconverter.js │ │ │ ├── multipolygonconverter.js │ │ │ ├── point.js │ │ │ ├── pointconverter.js │ │ │ ├── polygon.js │ │ │ ├── polygonconverter.js │ │ │ ├── rootsynchronizer.js │ │ │ ├── runconverter.js │ │ │ ├── shape.js │ │ │ ├── style.js │ │ │ ├── tilesynchronizer.js │ │ │ └── vectorsynchronizer.js │ │ ├── terrainlayer.js │ │ ├── tilegridtilingscheme.js │ │ ├── tiles │ │ │ ├── cesium3dtilelayerui.js │ │ │ ├── cesium3dtiles.js │ │ │ ├── cesium3dtilesdescriptor.js │ │ │ ├── cesium3dtilesimport.js │ │ │ ├── cesium3dtilesimportui.js │ │ │ ├── cesium3dtileslayer.js │ │ │ ├── cesium3dtileslayerconfig.js │ │ │ ├── cesium3dtilesprovider.js │ │ │ └── mime.js │ │ ├── vectorcontext.js │ │ └── wmsterrainprovider.js │ ├── config │ │ ├── config.js │ │ ├── configplugin.js │ │ └── configprovider.js │ ├── descriptor │ │ ├── descriptorresult.js │ │ ├── descriptorresultcard.js │ │ ├── descriptorsearch.js │ │ ├── facet │ │ │ ├── areafacet.js │ │ │ ├── searchtermfacet.js │ │ │ ├── sourcefacet.js │ │ │ ├── tagfacet.js │ │ │ ├── tagsplitfacet.js │ │ │ └── typefacet.js │ │ └── searchplugin.js │ ├── electron │ │ ├── customizesettingsui.js │ │ ├── customizesettingswindow.js │ │ ├── electron.js │ │ ├── electronconfirmcert.js │ │ ├── electronmemoryconfig.js │ │ ├── electronmenu.js │ │ ├── electronplugin.js │ │ ├── settingsfilenode.js │ │ ├── settingsfilenodeui.js │ │ ├── settingsimportmanager.js │ │ └── settingsimportui.js │ ├── featureaction │ │ ├── featureaction.js │ │ ├── featureactionentry.js │ │ ├── featureactionlegendrenderer.js │ │ ├── featureactionmanager.js │ │ ├── featureactionmenu.js │ │ ├── featureactionnodemenu.js │ │ ├── featureactionplugin.js │ │ ├── featurelabelaction.js │ │ ├── featuresoundaction.js │ │ ├── featurestyleaction.js │ │ ├── mime.js │ │ ├── tagname.js │ │ └── ui │ │ │ ├── editfeatureaction.js │ │ │ ├── featureactionconfig.js │ │ │ ├── featureactionlegendsettings.js │ │ │ ├── featureactionsui.js │ │ │ ├── featurelabelactionconfig.js │ │ │ ├── featuresoundactionconfig.js │ │ │ ├── featurestyleactionconfig.js │ │ │ ├── index.js │ │ │ └── launchforlayer.js │ ├── file │ │ ├── csv │ │ │ ├── csvdescriptor.js │ │ │ ├── csvexporter.js │ │ │ ├── csvlayerconfig.js │ │ │ ├── csvparser.js │ │ │ ├── csvparserconfig.js │ │ │ ├── csvplugin.js │ │ │ ├── csvprovider.js │ │ │ └── ui │ │ │ │ ├── csvexportui.js │ │ │ │ ├── csvimport.js │ │ │ │ └── csvimportui.js │ │ ├── geojson │ │ │ ├── geojsondescriptor.js │ │ │ ├── geojsonexporter.js │ │ │ ├── geojsonimport.js │ │ │ ├── geojsonimporthandler.js │ │ │ ├── geojsonimportui.js │ │ │ ├── geojsonlayerconfig.js │ │ │ ├── geojsonmixin.js │ │ │ ├── geojsonparser.js │ │ │ ├── geojsonplugin.js │ │ │ ├── geojsonprovider.js │ │ │ ├── geojsonsimplestyleparser.js │ │ │ └── mime.js │ │ ├── geojsonparserconfig.js │ │ ├── gml │ │ │ ├── gmldescriptor.js │ │ │ ├── gmlimport.js │ │ │ ├── gmlimportui.js │ │ │ ├── gmllayerconfig.js │ │ │ ├── gmlmixin.js │ │ │ ├── gmlparser.js │ │ │ ├── gmlparserconfig.js │ │ │ ├── gmlplugin.js │ │ │ ├── gmlprovider.js │ │ │ └── mime.js │ │ ├── gpx │ │ │ ├── gpxdescriptor.js │ │ │ ├── gpxlayerconfig.js │ │ │ ├── gpxparser.js │ │ │ ├── gpxplugin.js │ │ │ ├── gpxprovider.js │ │ │ ├── mime.js │ │ │ └── ui │ │ │ │ ├── gpximport.js │ │ │ │ └── gpximportui.js │ │ ├── kml │ │ │ ├── abstractkmlmanager.js │ │ │ ├── cmd │ │ │ │ ├── abstractkmlnodecmd.js │ │ │ │ ├── kmlnodeaddcmd.js │ │ │ │ └── kmlnoderemovecmd.js │ │ │ ├── jsonfield.js │ │ │ ├── kml.js │ │ │ ├── kmldescriptor.js │ │ │ ├── kmlexport.js │ │ │ ├── kmlexporter.js │ │ │ ├── kmlfeatureparser.js │ │ │ ├── kmlfield.js │ │ │ ├── kmlimporter.js │ │ │ ├── kmllayer.js │ │ │ ├── kmllayerconfig.js │ │ │ ├── kmlmenu.js │ │ │ ├── kmlmodel.js │ │ │ ├── kmlnodelayerui.js │ │ │ ├── kmlparser.js │ │ │ ├── kmlplugin.js │ │ │ ├── kmlprovider.js │ │ │ ├── kmlsource.js │ │ │ ├── kmlsourceevent.js │ │ │ ├── kmltreeexporter.js │ │ │ ├── mime.js │ │ │ ├── tour │ │ │ │ ├── abstracttourprimitive.js │ │ │ │ ├── eventtype.js │ │ │ │ ├── tour.js │ │ │ │ ├── tourcontrol.js │ │ │ │ ├── tourflyto.js │ │ │ │ ├── tourparser.js │ │ │ │ ├── toursoundcue.js │ │ │ │ └── tourwait.js │ │ │ └── ui │ │ │ │ ├── geometryicons.js │ │ │ │ ├── kmlexportui.js │ │ │ │ ├── kmlimagelayerui.js │ │ │ │ ├── kmlimport.js │ │ │ │ ├── kmlimportui.js │ │ │ │ ├── kmllayernode.js │ │ │ │ ├── kmlnetworklinknode.js │ │ │ │ ├── kmlnode.js │ │ │ │ ├── kmlnodeaction.js │ │ │ │ ├── kmlnodeui.js │ │ │ │ ├── kmltournode.js │ │ │ │ ├── kmltournodeui.js │ │ │ │ ├── kmltreeexportui.js │ │ │ │ ├── kmlui.js │ │ │ │ ├── networklinkicons.js │ │ │ │ └── placemarkedit.js │ │ ├── shp │ │ │ ├── data │ │ │ │ ├── dbffield.js │ │ │ │ ├── dbfheader.js │ │ │ │ ├── shpheader.js │ │ │ │ └── shxheader.js │ │ │ ├── mime.js │ │ │ ├── shp.js │ │ │ ├── shpdescriptor.js │ │ │ ├── shpexporter.js │ │ │ ├── shplayerconfig.js │ │ │ ├── shpparser.js │ │ │ ├── shpparserconfig.js │ │ │ ├── shpplugin.js │ │ │ ├── shpprovider.js │ │ │ └── ui │ │ │ │ ├── shpexportui.js │ │ │ │ ├── shpfilesstep.js │ │ │ │ ├── shpimport.js │ │ │ │ ├── shpimportui.js │ │ │ │ └── zipshpimportui.js │ │ └── zip │ │ │ ├── ui │ │ │ ├── zipimport.js │ │ │ └── zipimportui.js │ │ │ ├── zipparser.js │ │ │ ├── zipparserconfig.js │ │ │ └── zipplugin.js │ ├── google │ │ └── places │ │ │ ├── attrcard.js │ │ │ ├── attrresult.js │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ ├── result.js │ │ │ ├── resultcard.js │ │ │ └── search.js │ ├── heatmap │ │ ├── cmd │ │ │ ├── gradientcmd.js │ │ │ ├── intensitycmd.js │ │ │ └── sizecmd.js │ │ ├── heatmap.js │ │ ├── heatmapfield.js │ │ ├── heatmaplayer.js │ │ ├── heatmaplayerconfig.js │ │ ├── heatmaplayerui.js │ │ ├── heatmapmenu.js │ │ ├── heatmapplugin.js │ │ ├── heatmappropertytype.js │ │ └── heatmapsynchronizertype.js │ ├── ogc │ │ ├── geoserver.js │ │ ├── mime.js │ │ ├── ogclayerdescriptor.js │ │ ├── ogcplugin.js │ │ ├── query │ │ │ ├── filteridmodifier.js │ │ │ ├── ogcexclusionformatter.js │ │ │ ├── ogcqueryhandler.js │ │ │ ├── ogcspatialformatter.js │ │ │ └── ogctemporalformatter.js │ │ ├── ui │ │ │ ├── choosetimecolumn.js │ │ │ ├── geoserverhelp.js │ │ │ ├── geoserverimport.js │ │ │ ├── geoserverimportform.js │ │ │ ├── ogclayernodeui.js │ │ │ ├── ogcserverhelp.js │ │ │ ├── ogcserverimport.js │ │ │ └── ogcserverimportform.js │ │ ├── wfs │ │ │ ├── getfiltercolumns.js │ │ │ ├── launchfiltermanager.js │ │ │ ├── querywfslayerconfig.js │ │ │ └── wfslayerconfig.js │ │ ├── wms │ │ │ ├── tilewmssource.js │ │ │ └── wmslayerconfig.js │ │ └── wmts │ │ │ ├── wmtslayerconfig.js │ │ │ └── wmtsserver.js │ ├── openpage │ │ ├── handler.js │ │ ├── openpage.js │ │ ├── openpageplugin.js │ │ └── page.js │ ├── osm │ │ └── nom │ │ │ ├── nominatim.js │ │ │ ├── nominatimparser.js │ │ │ ├── nominatimplugin.js │ │ │ ├── nominatimsearch.js │ │ │ ├── nominatimsearchresult.js │ │ │ └── nominatimsearchresultcard.js │ ├── overview │ │ ├── overviewmapcontrol.js │ │ └── overviewplugin.js │ ├── params │ │ ├── editrequestparams.js │ │ ├── params.js │ │ ├── paramsmenu.js │ │ └── paramsplugin.js │ ├── pelias │ │ └── geocoder │ │ │ ├── attrcard.js │ │ │ ├── attrresult.js │ │ │ ├── geocoder.js │ │ │ ├── plugin.js │ │ │ ├── result.js │ │ │ ├── resultcard.js │ │ │ └── search.js │ ├── places │ │ ├── eventtype.js │ │ ├── kmlplacesimportui.js │ │ ├── places.js │ │ ├── placeshidecmd.js │ │ ├── placeslayer.js │ │ ├── placeslayerconfig.js │ │ ├── placesmanager.js │ │ ├── placesmenu.js │ │ ├── placesplugin.js │ │ ├── placessave.js │ │ ├── placessource.js │ │ └── ui │ │ │ ├── launchsaveplaces.js │ │ │ ├── placesbutton.js │ │ │ ├── placesnodeui.js │ │ │ ├── placesui.js │ │ │ ├── quickaddplaces.js │ │ │ └── saveplaces.js │ ├── position │ │ ├── copyposition.js │ │ ├── positioninteraction.js │ │ └── positionplugin.js │ ├── storage │ │ └── persistplugin.js │ ├── suncalc │ │ ├── lightstrip.js │ │ ├── lightstripsettings.js │ │ ├── lightstripsettingsui.js │ │ ├── suncalc.js │ │ ├── suncalcplugin.js │ │ └── suncalcui.js │ ├── track │ │ ├── confirmtrack.js │ │ ├── eventtype.js │ │ ├── track.js │ │ ├── trackevent.js │ │ ├── trackinteraction.js │ │ ├── trackmanager.js │ │ ├── trackmenu.js │ │ ├── trackmetrics.js │ │ └── trackplugin.js │ ├── vectortile │ │ ├── doubleclickinteraction.js │ │ ├── vectortile.js │ │ ├── vectortileformat.js │ │ ├── vectortilelayerconfig.js │ │ └── vectortileplugin.js │ ├── vectortools │ │ ├── copylayercmd.js │ │ ├── icons.js │ │ ├── joinlayercmd.js │ │ ├── joinwindow.js │ │ ├── mappingcounter.js │ │ ├── mergelayercmd.js │ │ ├── mergewindow.js │ │ ├── options.js │ │ ├── vectortools.js │ │ ├── vectortoolsplugin.js │ │ └── vectortoolsui.js │ ├── weather │ │ └── weatherplugin.js │ └── xyz │ │ ├── xyzdescriptornodeui.js │ │ ├── xyzlayerconfig.js │ │ ├── xyzplugin.js │ │ ├── xyzproviderhelp.js │ │ ├── xyzproviderimport.js │ │ └── xyzproviderimportform.js ├── polyfill │ └── chardetng.js └── worker │ ├── computeframediffs.js │ └── dataurltoarray.js ├── tasks ├── symlink.sh └── xt │ ├── build.js │ ├── exports.js │ └── gcc-args.json ├── test ├── init.js ├── os.xsd.mock.js ├── os │ ├── alert │ │ ├── alertevent.test.js │ │ └── alertmanager.test.js │ ├── array │ │ └── array.test.js │ ├── auth.test.js │ ├── bearing │ │ ├── bearing.test.js │ │ └── wait-for-geomag.mock.js │ ├── buffer │ │ └── buffer.test.js │ ├── color.test.js │ ├── column │ │ ├── columnmapping.test.js │ │ └── columnmappingmanager.test.js │ ├── command │ │ ├── asynccommand.mock.js │ │ ├── asynccommandstring.mock.js │ │ ├── command.mock.js │ │ ├── commandprocessor.test.js │ │ ├── commandstring.mock.js │ │ ├── editlayerfeaturescmd.test.js │ │ ├── featuresvisibilitycmd.test.js │ │ ├── flytoextentcmd.test.js │ │ ├── invertselectcmd.test.js │ │ ├── layeraddcmd.test.js │ │ ├── layerremovecmd.test.js │ │ ├── layervisibilitycmd.test.js │ │ ├── parallelcommand.test.js │ │ ├── selectallcmd.test.js │ │ ├── selectnonecmd.test.js │ │ └── sequencecommand.test.js │ ├── config │ │ ├── files │ │ │ ├── overrideA.json │ │ │ ├── overrideB.json │ │ │ ├── settings_noOverrides.json │ │ │ ├── settings_overrides.json │ │ │ └── settings_twoOverrides.json │ │ ├── settings.test.js │ │ └── settingsutil.mock.js │ ├── core.test.js │ ├── data │ │ ├── basedescriptor.test.js │ │ ├── basegroupby.test.js │ │ ├── bin.test.js │ │ ├── collectionmanager.test.js │ │ ├── configdescriptor.test.js │ │ ├── datamanager.test.js │ │ ├── fileprovider.test.js │ │ ├── foldernode.test.js │ │ ├── groupby │ │ │ ├── dategroupby.test.js │ │ │ ├── recentgroupby.test.js │ │ │ ├── taglistgroupby.test.js │ │ │ ├── testgroupby.test.js │ │ │ └── typegroupby.test.js │ │ ├── histo │ │ │ └── colorbin.test.js │ │ ├── layertreesearch.test.js │ │ ├── osdatamanager.test.js │ │ ├── provider.mock.js │ │ ├── registry.test.js │ │ ├── typegroupby.mock.js │ │ ├── xf │ │ │ ├── binningperf.test.js │ │ │ └── datamodel.test.js │ │ └── zorder.test.js │ ├── easing │ │ └── easing.js │ ├── extent.test.js │ ├── feature │ │ ├── dynamicfeature.test.js │ │ ├── feature.mock.js │ │ └── feature.test.js │ ├── file │ │ ├── file.test.js │ │ ├── filestorage.test.js │ │ ├── fileurlhandler.test.js │ │ ├── mime.mock.js │ │ ├── mime │ │ │ ├── columnmapping.test.js │ │ │ ├── columnmapping.xml │ │ │ ├── csv.test.js │ │ │ ├── filter.test.js │ │ │ ├── html.test.js │ │ │ ├── json.test.js │ │ │ ├── pdf.test.js │ │ │ ├── text.test.js │ │ │ ├── xml.test.js │ │ │ ├── xmlstate.test.js │ │ │ └── zip.test.js │ │ └── storage.mock.js │ ├── filter │ │ ├── filterentry.test.js │ │ └── impl │ │ │ └── ecql │ │ │ ├── areaformatter.test.js │ │ │ ├── exclusionformatter.test.js │ │ │ └── filterformatter.test.js │ ├── fn │ │ └── fn.test.js │ ├── geo │ │ ├── conv │ │ │ ├── mgrs.test.js │ │ │ └── utm.test.js │ │ ├── geo.test.js │ │ └── geo2.test.js │ ├── histo │ │ ├── datebinmethod.test.js │ │ ├── histogram.test.js │ │ ├── numericbinmethod.test.js │ │ └── uniquebinmethod.test.js │ ├── im │ │ ├── action │ │ │ ├── filteractionentry.test.js │ │ │ ├── importaction.mock.js │ │ │ └── mockaction.mock.js │ │ ├── featureimporter.test.js │ │ └── mapping │ │ │ ├── abstractmapping.test.js │ │ │ ├── abstractpositionmapping.test.js │ │ │ ├── altmapping.test.js │ │ │ ├── bearingmapping.test.js │ │ │ ├── latlonmapping.test.js │ │ │ ├── mapping.test.js │ │ │ ├── mgrsmapping.test.js │ │ │ ├── positionmapping.test.js │ │ │ ├── radiusmapping.test.js │ │ │ ├── renamemapping.test.js │ │ │ ├── staticmapping.test.js │ │ │ └── time │ │ │ └── datetimemapping.test.js │ ├── implements.test.js │ ├── interaction │ │ └── pinchzoominteraction.test.js │ ├── interpolate.test.js │ ├── job │ │ ├── job.test.js │ │ ├── job.test.worker.js │ │ └── jobmanager.test.js │ ├── layer │ │ ├── animatedtile.test.js │ │ ├── config │ │ │ ├── abstractlayerconfig.test.js │ │ │ ├── abstracttilelayerconfig.test.js │ │ │ ├── tilelayerconfig.mock.js │ │ │ └── vectorlayerconfig.mock.js │ │ ├── folder.test.js │ │ ├── foldermanager.test.js │ │ ├── layer.mock.js │ │ ├── layer.test.js │ │ ├── preset │ │ │ ├── layerpresetmanager.test.js │ │ │ └── settingspresetservice.test.js │ │ └── tile.test.js │ ├── load │ │ └── loadingmanager.test.js │ ├── math │ │ ├── circle.test.js │ │ ├── math.test.js │ │ └── units.test.js │ ├── metrics │ │ ├── graphitemetricsprovider.test.js │ │ ├── mapmetrics.test.js │ │ └── metrics.test.js │ ├── mixin.test.js │ ├── mixin │ │ ├── closuremixin.test.js │ │ ├── fixinjectorinvoke.test.js │ │ ├── geometrymixin.test.js │ │ └── rbushmixin.test.js │ ├── net │ │ ├── baseservermodifier.test.js │ │ ├── certnazi.test.js │ │ ├── customformatter.test.js │ │ ├── extdomainhandler.test.js │ │ ├── formencformatter.test.js │ │ ├── localfilehandler.test.js │ │ ├── modifier.mock.js │ │ ├── ndjsonencformatter.test.js │ │ ├── net.test.js │ │ ├── parammodifier.test.js │ │ ├── proxyhandler.test.js │ │ ├── request.test.js │ │ ├── requesthandlerfactory.test.js │ │ ├── samedomainhandler.test.js │ │ ├── some.json │ │ ├── urlmodifier.test.js │ │ └── variablereplacer.test.js │ ├── object │ │ └── object.test.js │ ├── ogc │ │ ├── filter │ │ │ ├── ogcfiltercleaner.test.js │ │ │ └── ogcfiltermodifier.test.js │ │ ├── ogcservice.test.js │ │ ├── query │ │ │ └── ogcquery.test.js │ │ ├── spatial │ │ │ └── spatial.test.js │ │ ├── wfs │ │ │ ├── describefeatureloader.test.js │ │ │ ├── describefeaturetypeparser.test.js │ │ │ ├── dft.xml │ │ │ ├── dftError.xml │ │ │ ├── featuretype.test.js │ │ │ └── wfsformatter.test.js │ │ └── wmts │ │ │ ├── abstractwmtslayerparser.test.js │ │ │ ├── wmts.test.js │ │ │ └── wmtslayerparserv100.test.js │ ├── ol │ │ ├── events │ │ │ └── condition.test.js │ │ ├── image.test.js │ │ └── source │ │ │ ├── tileimage.test.js │ │ │ └── xyzsource.test.js │ ├── os.mock.js │ ├── os.test.js │ ├── parse │ │ └── rss │ │ │ ├── rssparser.test.js │ │ │ └── rsstest.xml │ ├── plugin │ │ ├── errorplugin.mock.js │ │ ├── plugin.mock.js │ │ └── pluginmanager.test.js │ ├── proj │ │ └── proj.test.js │ ├── query │ │ ├── filtertype.test.js │ │ ├── handler.mock.js │ │ ├── query.test.js │ │ └── querymanager.test.js │ ├── search │ │ ├── abstractsearchresult.test.js │ │ ├── search.mock.js │ │ ├── searchmanager.test.js │ │ ├── searchtermfacet.test.js │ │ └── subsearchtutils.test.js │ ├── source │ │ ├── asyncimporter.mock.js │ │ ├── importqueuesource.test.js │ │ ├── oddfilter.mock.js │ │ ├── source.mock.js │ │ ├── source.test.js │ │ └── vectorsource.test.js │ ├── state │ │ ├── state.test.js │ │ ├── v2 │ │ │ ├── filterstate.test.js │ │ │ ├── queryentriesstate.test.js │ │ │ └── timestate.test.js │ │ └── v4 │ │ │ ├── exclusionareastate.test.js │ │ │ ├── filterstate.test.js │ │ │ ├── layerstate.test.js │ │ │ ├── queryareastate.test.js │ │ │ ├── queryentriesstate.test.js │ │ │ ├── timestate.test.js │ │ │ └── viewstate.test.js │ ├── storage │ │ ├── asyncstoragewrapper.test.js │ │ ├── idbstorage.test.js │ │ ├── objectmechanism.test.js │ │ └── storage.mock.js │ ├── string │ │ └── string.test.js │ ├── structs │ │ ├── arraycollection.test.js │ │ ├── treenode.test.js │ │ └── tristatetreenode.test.js │ ├── style │ │ ├── circlereader.test.js │ │ ├── fillreader.test.js │ │ ├── iconreader.test.js │ │ ├── imagereader.test.js │ │ ├── shapereader.test.js │ │ ├── strokereader.test.js │ │ ├── style.test.js │ │ ├── stylereader.test.js │ │ └── textreader.test.js │ ├── tag │ │ └── tag.test.js │ ├── thread │ │ ├── job.mock.js │ │ └── thread.test.js │ ├── time │ │ ├── time.test.js │ │ ├── timeinstant.test.js │ │ ├── timelinecontroller.test.js │ │ ├── timeperiod.test.js │ │ ├── timerange.test.js │ │ └── xf │ │ │ └── timemodel.test.js │ ├── track.test.js │ ├── ui.test.js │ ├── ui │ │ ├── action │ │ │ └── actionmanager.test.js │ │ ├── actionmenu.test.js │ │ ├── adddata.test.js │ │ ├── clipboard │ │ │ └── clipboard.test.js │ │ ├── column │ │ │ └── mapping │ │ │ │ └── columnmappingform.test.js │ │ ├── datetime │ │ │ └── startenddate.test.js │ │ ├── draw │ │ │ └── draw.test.js │ │ ├── file │ │ │ ├── exportmanager.test.js │ │ │ ├── exportmethod.mock.js │ │ │ ├── kml.test.js │ │ │ ├── persistmethod.mock.js │ │ │ └── urlmethod.test.js │ │ ├── filter │ │ │ ├── expressionnode.test.js │ │ │ ├── filterfn.test.js │ │ │ ├── filterstring.test.js │ │ │ ├── groupnode.test.js │ │ │ ├── op │ │ │ │ ├── betweenop.test.js │ │ │ │ ├── equaltoop.test.js │ │ │ │ ├── greaterthanop.test.js │ │ │ │ ├── greaterthanorequaltoop.test.js │ │ │ │ ├── inlistop.test.js │ │ │ │ ├── isfalseop.test.js │ │ │ │ ├── islikenumericop.test.js │ │ │ │ ├── islikeop.test.js │ │ │ │ ├── isnullop.test.js │ │ │ │ ├── istrueop.test.js │ │ │ │ ├── lessthanop.test.js │ │ │ │ ├── lessthanorequaltoop.test.js │ │ │ │ ├── likelistnumericop.test.js │ │ │ │ ├── likelistop.test.js │ │ │ │ ├── notbetweenop.test.js │ │ │ │ ├── notequaltoop.test.js │ │ │ │ ├── notlikeop.test.js │ │ │ │ ├── notnullop.test.js │ │ │ │ ├── notop.test.js │ │ │ │ ├── op.test.js │ │ │ │ └── time │ │ │ │ │ ├── betweentimeop.test.js │ │ │ │ │ ├── newerthanop.test.js │ │ │ │ │ └── olderthanop.test.js │ │ │ └── parse │ │ │ │ ├── filterparser.test.js │ │ │ │ ├── filters.xml │ │ │ │ └── state.xml │ │ ├── geo │ │ │ └── positionctrl.test.js │ │ ├── icons.test.js │ │ ├── layer │ │ │ └── ellipsecolumns.test.js │ │ ├── menu │ │ │ └── areaimportmenu.test.js │ │ ├── ogc │ │ │ └── ogcserver.test.js │ │ ├── onboarding │ │ │ ├── noTitle.json │ │ │ ├── onboardingmanager.test.js │ │ │ ├── onboardingurlhandler.test.js │ │ │ └── valid.json │ │ ├── query │ │ │ ├── abstractqueryreader.test.js │ │ │ ├── baseareamanager.test.js │ │ │ ├── basequerymanager.test.js │ │ │ ├── basicquery.xml │ │ │ ├── basicqueryreader.test.js │ │ │ ├── filtermanager.test.js │ │ │ └── handler.mock.js │ │ ├── route │ │ │ └── routemanager.test.js │ │ ├── search │ │ │ ├── featureresultcard.test.js │ │ │ └── place │ │ │ │ └── coordinateresult.test.js │ │ ├── searchscrolldatasource.test.js │ │ ├── server │ │ │ └── abstractloadingserver.test.js │ │ ├── settingsbutton.test.js │ │ ├── sitemessage │ │ │ └── sitemessageutils.test.js │ │ ├── slick │ │ │ ├── columnutil.test.js │ │ │ ├── slicktreectrl.test.js │ │ │ ├── slicktreenode.test.js │ │ │ ├── treesearch.test.js │ │ │ └── typegroupby.mock.js │ │ ├── text │ │ │ ├── text.test.js │ │ │ ├── tuieditor.test.js │ │ │ └── tuieditorlang.test.js │ │ └── window │ │ │ └── confirm.test.js │ ├── unit │ │ ├── baseunit.test.js │ │ ├── englishdistanceunits.test.js │ │ ├── feetunits.test.js │ │ ├── metricunits.test.js │ │ ├── mileunits.test.js │ │ ├── multiplier.test.js │ │ ├── nauticalmileunits.test.js │ │ ├── nauticalunits.test.js │ │ ├── unitfactory.test.js │ │ ├── unitmanager.test.js │ │ ├── usdistanceunits.test.js │ │ └── yardunits.test.js │ ├── uri │ │ └── uri.test.js │ ├── url │ │ ├── abstracturlhandler.test.js │ │ ├── url.test.js │ │ └── urlmanager.test.js │ ├── user │ │ └── settings │ │ │ └── favoritemanager.test.js │ ├── xml.test.js │ └── xt │ │ ├── handler.mock.js │ │ └── peer.test.js ├── plugin │ ├── arc │ │ ├── arc.test.js │ │ ├── arcjsonparser.test.js │ │ ├── arcloader.test.js │ │ ├── arcresponse.json │ │ ├── arcserver.test.js │ │ ├── layer │ │ │ └── arclayerdescriptor.test.js │ │ ├── mime.test.js │ │ ├── node │ │ │ └── arcservicenode.test.js │ │ ├── query │ │ │ └── arcqueryhandler.test.js │ │ └── state │ │ │ ├── v2 │ │ │ ├── arcstate.test.js │ │ │ ├── loadstate.xml │ │ │ └── savestate.xml │ │ │ └── v4 │ │ │ └── arclayerstate.test.js │ ├── basemap │ │ ├── basemapdescriptor.test.js │ │ ├── basemapprovider.test.js │ │ └── v4 │ │ │ └── basemapstate.test.js │ ├── cesium │ │ ├── cesium.mock.js │ │ ├── primitive.mock.js │ │ ├── primitive.test.js │ │ ├── scene.mock.js │ │ ├── sync │ │ │ ├── converter.test.js │ │ │ ├── dynamiclinestring.mock.js │ │ │ ├── dynamiclinestringconverter.test.js │ │ │ ├── dynamicmultipolygonconverter.test.js │ │ │ ├── dynamicpolygonconverter.test.js │ │ │ ├── ellipseconverter.test.js │ │ │ ├── ellipsoidconverter.test.js │ │ │ ├── featureconverter.test.js │ │ │ ├── geometrycollectionconverter.test.js │ │ │ ├── gettransformfunction.test.js │ │ │ ├── heightreference.test.js │ │ │ ├── labelconverter.test.js │ │ │ ├── linestring.mock.js │ │ │ ├── linestringconverter.test.js │ │ │ ├── multidynamiclinestringconverter.test.js │ │ │ ├── multilinestringconverter.test.js │ │ │ ├── pointconverter.test.js │ │ │ ├── polygon.mock.js │ │ │ ├── polygonconverter.test.js │ │ │ ├── runconverter.test.js │ │ │ ├── style.mock.js │ │ │ └── style.test.js │ │ └── vectorcontext.test.js │ ├── descriptor │ │ ├── descriptorsearch.test.js │ │ └── facet │ │ │ └── tagsplitfacet.test.js │ ├── featureaction │ │ ├── featureaction.mock.js │ │ ├── featureactionentry.test.js │ │ ├── featureactionmanager.test.js │ │ ├── featureactionstate.test.js │ │ └── mockaction.mock.js │ ├── file │ │ ├── csv │ │ │ └── csvexporter.test.js │ │ ├── geojson │ │ │ ├── 10k.json │ │ │ ├── geojsonparser.test.js │ │ │ └── mime.test.js │ │ ├── gpx │ │ │ └── mime.test.js │ │ ├── kml │ │ │ ├── kml.test.js │ │ │ ├── kml_test.xml │ │ │ ├── kmlexporter.test.js │ │ │ ├── kmlparser.test.js │ │ │ ├── mime.test.js │ │ │ ├── schema_noname_test.xml │ │ │ ├── schema_test.xml │ │ │ ├── style_merge.xml │ │ │ ├── tour │ │ │ │ ├── tour.test.js │ │ │ │ ├── tourcontrol.test.js │ │ │ │ ├── tourflyto.test.js │ │ │ │ ├── tourparser.test.js │ │ │ │ ├── tourprimitive.mock.js │ │ │ │ ├── toursoundcue.test.js │ │ │ │ └── tourwait.test.js │ │ │ └── ui │ │ │ │ └── placemarkedit.test.js │ │ ├── shp │ │ │ ├── mime.test.js │ │ │ ├── shp.test.js │ │ │ └── shpexporter.test.js │ │ └── zip │ │ │ └── zipparser.test.js │ ├── google │ │ └── places │ │ │ └── googlesearch.test.js │ ├── heatmap │ │ ├── cmd │ │ │ ├── gradientcmd.test.js │ │ │ ├── intensitycmd.test.js │ │ │ └── sizecmd.test.js │ │ ├── heatmap.test.js │ │ ├── heatmaplayer.test.js │ │ └── heatmapplugin.test.js │ ├── ogc │ │ ├── geoserver.test.js │ │ ├── mime.test.js │ │ ├── query │ │ │ └── ogctemporalformatter.test.js │ │ ├── state │ │ │ └── v4 │ │ │ │ └── ogclayerstate.test.js │ │ ├── wfs │ │ │ └── wfslayerconfig.test.js │ │ ├── wms │ │ │ └── wmslayerconfig.test.js │ │ └── wmts │ │ │ └── wmtsserver.test.js │ ├── osm │ │ └── nom │ │ │ ├── nominatim_response.json │ │ │ ├── nominatimparser.test.js │ │ │ └── nominatimplugin.test.js │ ├── pelias │ │ └── geocoder │ │ │ ├── badfeatures.json │ │ │ ├── malformed.json │ │ │ ├── nofeatures.json │ │ │ ├── pelias-result.json │ │ │ ├── pelias-result2.json │ │ │ └── peliasgeocoder.test.js │ ├── suncalc │ │ ├── lightstrip.test.js │ │ ├── lightstripsettings.test.js │ │ ├── suncalcplugin.test.js │ │ └── suncalcui.test.js │ ├── vectortools │ │ └── vectortools.test.js │ └── xyz │ │ └── xyzlayerconfig.test.js ├── resources │ ├── arc │ │ ├── arc.html │ │ └── arcgis │ │ │ ├── wms-130.xml │ │ │ └── wmsserver │ │ │ └── wms-130.xml │ ├── bin │ │ └── rand.bin │ ├── csv │ │ └── areas.csv │ ├── foo.txt │ ├── gpx │ │ └── sample.gpx │ ├── html │ │ ├── no-doctype.html │ │ ├── old-doctype.html │ │ ├── sample.html │ │ └── sample.xhtml │ ├── json │ │ ├── ERROR_invalid_field.json │ │ ├── ERROR_invalid_field2.json │ │ ├── ERROR_invalid_value.json │ │ ├── ERROR_invalid_value2.json │ │ ├── ERROR_trailing_comma.json │ │ ├── partial_array.json │ │ ├── partial_null.json │ │ ├── partial_number.json │ │ ├── partial_object.json │ │ └── partial_string.json │ ├── ogc │ │ ├── exception-report.xml │ │ ├── wfs-110.xml │ │ ├── wfs-200.xml │ │ ├── wms-111.xml │ │ ├── wms-130.xml │ │ └── wmts-100.xml │ ├── pdf │ │ └── test.pdf │ ├── shp │ │ ├── example.dbf │ │ ├── example.shp │ │ ├── example.shx │ │ └── example.zip │ ├── text │ │ ├── big5.bin │ │ ├── euc-jp.bin │ │ ├── euc-kr.bin │ │ ├── gb-2312.bin │ │ ├── hz-2312.bin │ │ ├── iso-2022-jp.2.bin │ │ ├── iso-2022-jp.bin │ │ ├── iso-8859-5.russian.bin │ │ ├── iso-8859-7.greek.bin │ │ ├── iso-8859-8.hebrew1.bin │ │ ├── iso-8859-8.hebrew2.bin │ │ ├── shift-jis.bin │ │ ├── utf16.bin │ │ ├── utf16be.bin │ │ ├── utf16le.bin │ │ ├── utf8.bin │ │ ├── utf8.truncated-multibyte.bin │ │ ├── windows-1252.french.bin │ │ └── windows-1252.german.bin │ ├── xml │ │ ├── ERROR_text-before-root.xml │ │ ├── comment-with-embedded-xml.xml │ │ └── namespaced-root-partial.xml │ └── zip │ │ ├── test-csv.zip │ │ ├── test.docx │ │ ├── test.kmz │ │ └── test.zip └── wait-for-osasm.mock.js ├── vendor-min.js ├── vendor ├── angular-ui │ ├── angular-ui-utils │ │ ├── scroll │ │ │ ├── ui-scroll-jqlite.js │ │ │ ├── ui-scroll.js │ │ │ └── ui-scroll_orig.js │ │ └── utils.js │ └── angular-ui.js ├── bootstrap2 │ └── typeahead.js ├── geomag │ ├── WMM.txt │ ├── cof2Obj.js │ └── geomag.js ├── gif │ ├── gif.js │ ├── gif.min.js │ ├── gif.worker.js │ └── gif.worker.min.js ├── jquery-ui │ ├── jquery-ui-1.12.1.js │ ├── jquery-ui-1.12.1.min.js │ └── lightness │ │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.12.1.min.css ├── jquery │ ├── jquery.event.drag-2.3.0.js │ └── jquery.mousewheel-3.1.12.min.js ├── ol-mapbox-style │ ├── README.md │ └── stylefunction.js ├── slick │ ├── images │ │ ├── sort-asc.gif │ │ └── sort-desc.gif │ ├── slick.core.js │ ├── slick.dataview.js │ ├── slick.editors.js │ ├── slick.formatters.js │ ├── slick.grid.css │ ├── slick.grid.js │ ├── slick.groupitemmetadataprovider.js │ ├── slick.headerbuttons.css │ ├── slick.headerbuttons.js │ └── slick.rowselectionmodel.js └── webgl-mock │ └── webgl-mock.require.js ├── views ├── action │ └── layerchooser.html ├── alert │ └── alertpopup.html ├── annotation │ └── annotationoptions.html ├── areas.html ├── badge.html ├── buffer │ ├── bufferdialog.html │ └── bufferform.html ├── capture │ └── recordingui.html ├── checklist.html ├── color │ └── colorpalette.html ├── column │ ├── columnmanager.html │ ├── columnpicker.html │ ├── columnrow.html │ └── mapping │ │ ├── columnmappingexport.html │ │ ├── columnmappingform.html │ │ ├── columnmappingsettings.html │ │ └── mappingexpression.html ├── columnactions │ └── columnactionprompt.html ├── config │ ├── areasettings.html │ ├── bearingsettings.html │ ├── displaysettings.html │ ├── interpolationsettings.html │ ├── legendsettings.html │ ├── locationsettings.html │ ├── metricdetails.html │ ├── metricscontainer.html │ ├── projectionsettings.html │ ├── servers.html │ ├── settingswindow.html │ ├── themesettings.html │ └── unitsettings.html ├── consent.html ├── data │ ├── addcolumn.html │ ├── addcolumnform.html │ └── histo │ │ └── colormodellegendsettings.html ├── datepanel.html ├── datetime │ ├── anydate.html │ ├── datecontrol.html │ ├── datecustom.html │ ├── datetime.html │ ├── duration.html │ ├── startenddate.html │ └── wheeldate.html ├── descriptioninfo.html ├── draw │ ├── basedrawcontrols.html │ ├── drawcontrols.html │ └── drawpicker.html ├── ex │ └── exportoptions.html ├── feature │ ├── featureinfo.html │ ├── featureinfocell.html │ ├── multifeatureinfo.html │ └── tab │ │ ├── descriptiontab.html │ │ └── propertiestab.html ├── file │ ├── addexportoptions.html │ ├── addserver.html │ ├── anytypeimport.html │ ├── csv │ │ └── configstep.html │ ├── exportdialog.html │ ├── fileimport.html │ ├── filesettings.html │ ├── genericfileimport.html │ ├── importdialog.html │ ├── redirect │ │ └── redirect.html │ └── urlimport.html ├── filter │ ├── advancedfilterbuilder.html │ ├── basicfilterbuilder.html │ ├── between.html │ ├── copyfilter.html │ ├── copyfilterpicker.html │ ├── editfilters.html │ ├── expression.html │ ├── filterexport.html │ ├── im │ │ ├── filterimport.html │ │ └── filterimportmodel.html │ ├── list.html │ ├── listnocolcheck.html │ ├── op │ │ └── time │ │ │ ├── betweentime.html │ │ │ └── newerolderthan.html │ ├── ruleexpression.html │ ├── text.html │ ├── textnocolcheck.html │ └── viewfilters.html ├── filters.html ├── forms │ ├── multiurl.html │ ├── singleurl.html │ └── singleurlform.html ├── geo │ ├── position.html │ └── ringoptions.html ├── help │ ├── controlblock.html │ ├── controls.html │ ├── misconfigured.html │ ├── webglperfcaveat.html │ └── webglsupport.html ├── icon │ ├── iconpalette.html │ ├── iconpicker.html │ └── iconselector.html ├── im │ ├── action │ │ ├── filteractionexport.html │ │ └── importactions.html │ ├── basicinfo.html │ ├── fileexists.html │ ├── filesupport.html │ └── urlexists.html ├── layer │ ├── compare │ │ └── layercompare.html │ ├── default.html │ ├── ellipsecolumns.html │ ├── ellipseoptions.html │ ├── iconstylecontrols.html │ ├── image.html │ ├── labelcontrols.html │ ├── layerpicker.html │ ├── loboptions.html │ ├── tile.html │ ├── vector.html │ └── vectorstylecontrols.html ├── layers.html ├── legend.html ├── location │ └── simplelocation.html ├── main.html ├── menu │ ├── actionmenu.html │ └── actionmenuitemlist.html ├── modal │ ├── aboutmodal.html │ ├── confirmationmodal.html │ └── loading.html ├── navbottom.html ├── navtop.html ├── ogc │ └── ogclist.html ├── onboarding │ └── ngonboarding.html ├── osnavtop.html ├── pagingbar.html ├── plugin │ ├── arc │ │ └── arcserverhelp.html │ ├── basemap │ │ └── basemaplayerui.html │ ├── cesium │ │ ├── cesium3dtile.html │ │ └── importionasset.html │ ├── csv │ │ └── csvexport.html │ ├── descriptor │ │ └── resultcard.html │ ├── electron │ │ ├── customizesettings.html │ │ ├── customizesettingswindow.html │ │ ├── electronconfirmcert.html │ │ └── electronmemoryconfig.html │ ├── featureaction │ │ ├── editfeatureaction.html │ │ ├── featureactionlegendsettings.html │ │ ├── featurelabelactionconfig.html │ │ └── featuresoundactionconfig.html │ ├── google │ │ └── places │ │ │ ├── attrcard.html │ │ │ └── resultcard.html │ ├── heatmap │ │ └── heatmap.html │ ├── kml │ │ ├── kmlarea.html │ │ ├── kmlexport.html │ │ ├── kmlnodelayerui.html │ │ └── kmltreeexport.html │ ├── ogc │ │ └── ui │ │ │ ├── choosetimecolumn.html │ │ │ ├── geoserverhelp.html │ │ │ ├── ogcserverhelp.html │ │ │ ├── ogcserverimport.html │ │ │ └── ogcserverimportform.html │ ├── osm │ │ └── nom │ │ │ └── nominatimresultcard.html │ ├── params │ │ └── editrequestparams.html │ ├── pelias │ │ └── geocoder │ │ │ ├── attrcard.html │ │ │ └── resultcard.html │ ├── places │ │ ├── places.html │ │ ├── quickaddplaces.html │ │ └── saveplaces.html │ ├── position │ │ └── positionplugin.html │ ├── shp │ │ ├── shparea.html │ │ ├── shpexport.html │ │ └── shpfilesstep.html │ ├── suncalc │ │ ├── lightstripsettings.html │ │ └── suncalc.html │ ├── track │ │ └── confirmtrack.html │ ├── vectortools │ │ ├── join.html │ │ ├── mappingcounter.html │ │ └── merge.html │ ├── xyz │ │ ├── xyzproviderhelp.html │ │ ├── xyzsingleurl.html │ │ └── xyzsingleurlform.html │ └── zip │ │ └── zipimport.html ├── propertyinfo.html ├── query │ ├── area │ │ ├── choosearea.html │ │ └── userarea.html │ ├── areaoptionsstep.html │ ├── combinator.html │ ├── editarea.html │ ├── mergeareas.html │ └── modifyarea.html ├── renamelayer.html ├── search │ ├── place │ │ └── coordinateresultcard.html │ ├── searchbox.html │ └── searchresults.html ├── sitemessage.html ├── state │ └── statelist.html ├── text │ └── tuieditor.html ├── time │ └── time.html ├── timelinepanel.html ├── twocolumninfo.html ├── util │ └── validationmessage.html ├── window │ ├── clear.html │ ├── confirm.html │ ├── confirmcolor.html │ ├── confirmcolumn.html │ ├── confirmtext.html │ ├── dockedwindow.html │ ├── geohelp.html │ ├── stateimportexport.html │ ├── textprompt.html │ ├── timehelp.html │ └── window.html ├── windows │ ├── adddata.html │ ├── alerts.html │ ├── animationsettings.html │ ├── featureedit.html │ ├── featurelist.html │ ├── history.html │ ├── layers.html │ ├── screenoverlay.html │ └── timelinesettings.html └── wiz │ ├── geometrystep.html │ ├── optionsstep.html │ ├── timeinstantui.html │ ├── timestep.html │ ├── wizard.html │ └── wizardpreview.html ├── webpack-test.config.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | src/os/polyfill/*.js 2 | src/os/metrics/webglreport.js 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "extends": "@ngageoint/opensphere" 3 | }; 4 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit "$1" 2 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | npm run package:update 2 | -------------------------------------------------------------------------------- /.husky/post-rewrite: -------------------------------------------------------------------------------- 1 | npm run package:update 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-opensphere" 3 | } 4 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | }; 4 | -------------------------------------------------------------------------------- /docs/_static/css/overrides.css: -------------------------------------------------------------------------------- 1 | /* make line highlight visible against new highlight div background */ 2 | .highlight .hll { 3 | background-color: #ddeebb; 4 | } 5 | -------------------------------------------------------------------------------- /docs/cookbook/audionotification/src/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "admin": { 3 | "sounds": { "sound1" : "sounds/cowbell.wav" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /docs/guides/app_package_guide/package/directories.json: -------------------------------------------------------------------------------- 1 | { 2 | "directories": { 3 | "scss": "scss", 4 | "views": "views" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /docs/guides/plugin_file_type_guide/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /images/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/Mouse.png -------------------------------------------------------------------------------- /images/MouseLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/MouseLeft.png -------------------------------------------------------------------------------- /images/MouseMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/MouseMiddle.png -------------------------------------------------------------------------------- /images/MouseRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/MouseRight.png -------------------------------------------------------------------------------- /images/brand/favicon/opensphere.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/brand/favicon/opensphere.ico -------------------------------------------------------------------------------- /images/features-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/features-base.png -------------------------------------------------------------------------------- /images/furley_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/furley_bg.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/1.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/10.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/2.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/3.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/4.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/5.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/6.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/7.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/8.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/9.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/a.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/b.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/blu-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/blu-blank.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/blu-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/blu-circle.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/blu-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/blu-square.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/blu-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/blu-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/c.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/d.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/e.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/f.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/g.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/grn-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/grn-blank.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/grn-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/grn-circle.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/grn-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/grn-square.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/grn-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/grn-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/h.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/i.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/j.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/k.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/l.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/m.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/n.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/o.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/p.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/pink-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/pink-blank.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/pink-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/pink-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/q.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/r.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/red-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/red-circle.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/red-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/red-square.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/red-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/red-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/s.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/t.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/u.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/v.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/w.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/wht-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/wht-blank.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/wht-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/wht-circle.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/wht-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/wht-square.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/wht-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/wht-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/x.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/y.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/ylw-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/ylw-circle.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/ylw-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/ylw-square.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/ylw-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/ylw-stars.png -------------------------------------------------------------------------------- /images/icons/kml/paddle/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/paddle/z.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/airports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/airports.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/arrow.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/arts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/arts.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/bars.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/bus.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/cabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/cabs.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/camera.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/campfire.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/campground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/campground.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/caution.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/coffee.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/cycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/cycling.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/dining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/dining.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/dollar.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/donut.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/earthquake.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/euro.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/ferry.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/firedept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/firedept.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/fishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/fishing.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/flag.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/forbidden.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/golf.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/grocery.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/heliport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/heliport.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/hiker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/hiker.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/hospitals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/hospitals.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/info-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/info-i.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/info.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/lodging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/lodging.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/man.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/marina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/marina.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/mechanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/mechanic.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/movies.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/parks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/parks.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/phone.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/picnic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/picnic.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/play.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/poi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/poi.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/police.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/polygon.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/rail.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/rainy.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/realestate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/realestate.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/sailing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/sailing.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/salon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/salon.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/shaded_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/shaded_dot.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/shopping.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/ski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/ski.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/snack_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/snack_bar.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/square.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/star.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/subway.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/sunny.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/swimming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/swimming.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/target.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/toilets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/toilets.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/trail.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/tram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/tram.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/triangle.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/truck.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/volcano.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/water.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/webcam.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/woman.png -------------------------------------------------------------------------------- /images/icons/kml/shapes/yen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/kml/shapes/yen.png -------------------------------------------------------------------------------- /images/icons/maki/v1/aerialway-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/aerialway-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/aerialway-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/aerialway-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/aerialway-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/aerialway-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airfield-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airfield-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airfield-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airfield-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airfield-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airfield-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/airport-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/airport-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bakery-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bakery-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bank-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bank-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bar-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bar-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/baseball-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/baseball-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/baseball-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/baseball-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/baseball-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/baseball-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/basketball-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/basketball-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/basketball-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/basketball-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/basketball-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/basketball-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/beer-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/beer-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bicycle-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bicycle-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/building-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/building-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/building-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/building-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/building-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/building-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/bus-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/bus-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cafe-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cafe-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/camera-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/camera-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/campsite-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/campsite-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/campsite-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/campsite-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/campsite-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/campsite-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/car-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/car-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cemetery-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cemetery-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cemetery-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cemetery-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cemetery-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cemetery-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/chemist-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/chemist-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cinema-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cinema-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/circle-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/circle-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/city-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/city-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/college-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/college-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/commercial-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/commercial-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/commercial-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/commercial-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/commercial-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/commercial-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cricket-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cricket-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/cross-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/cross-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dam-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dam-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/danger-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/danger-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dentist-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dentist-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/disability-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/disability-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/disability-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/disability-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/disability-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/disability-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dog-park-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dog-park-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dog-park-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dog-park-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/dog-park-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/dog-park-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/embassy-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/embassy-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/entrance-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/entrance-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/entrance-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/entrance-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/entrance-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/entrance-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/farm-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/farm-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fast-food-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fast-food-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fast-food-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fast-food-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fast-food-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fast-food-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ferry-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ferry-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/fuel-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/fuel-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/garden-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/garden-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/gift-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/gift-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/golf-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/golf-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/grocery-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/grocery-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/harbor-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/harbor-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heart-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heart-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heliport-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heliport-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heliport-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heliport-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/heliport-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/heliport-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/hospital-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/hospital-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/hospital-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/hospital-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/hospital-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/hospital-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ice-cream-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ice-cream-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ice-cream-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ice-cream-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/ice-cream-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/ice-cream-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/industrial-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/industrial-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/industrial-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/industrial-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/industrial-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/industrial-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/laundry-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/laundry-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/laundry-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/laundry-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/laundry-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/laundry-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/library-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/library-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/library-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/library-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/library-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/library-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/lodging-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/lodging-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/lodging-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/lodging-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/lodging-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/lodging-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/logging-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/logging-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/logging-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/logging-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/logging-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/logging-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/marker-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/marker-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/marker-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/marker-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/marker-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/marker-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/museum-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/museum-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/museum-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/museum-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/museum-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/museum-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/music-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/music-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/music-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/music-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/music-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/music-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park2-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park2-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park2-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park2-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/park2-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/park2-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/parking-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/parking-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/parking-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/parking-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/parking-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/parking-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/pitch-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/pitch-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/pitch-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/pitch-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/pitch-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/pitch-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/police-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/police-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/police-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/police-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/police-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/police-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/post-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/post-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/prison-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/prison-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/prison-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/prison-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/prison-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/prison-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rail-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rail-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rocket-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rocket-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rocket-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rocket-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/rocket-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/rocket-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/school-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/school-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/school-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/school-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/school-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/school-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/scooter-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/scooter-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/scooter-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/scooter-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/scooter-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/scooter-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/shop-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/shop-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/skiing-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/skiing-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/skiing-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/skiing-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/skiing-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/skiing-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/soccer-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/soccer-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/soccer-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/soccer-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/soccer-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/soccer-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/square-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/square-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/square-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/square-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/square-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/square-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/star-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/star-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/tennis-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/tennis-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/tennis-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/tennis-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/tennis-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/tennis-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/theatre-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/theatre-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/theatre-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/theatre-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/theatre-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/theatre-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/toilets-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/toilets-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/toilets-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/toilets-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/toilets-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/toilets-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/town-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/town-24@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/village-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/village-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/village-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/village-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/village-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/village-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/water-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/water-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/water-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/water-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/water-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/water-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/wetland-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/wetland-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/wetland-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/wetland-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/wetland-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/wetland-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-12.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-12@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-18.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-18@2x.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-24.png -------------------------------------------------------------------------------- /images/icons/maki/v1/zoo-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/maki/v1/zoo-24@2x.png -------------------------------------------------------------------------------- /images/icons/paddle/1-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/1-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/1.png -------------------------------------------------------------------------------- /images/icons/paddle/10-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/10-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/10.png -------------------------------------------------------------------------------- /images/icons/paddle/2-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/2-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/2.png -------------------------------------------------------------------------------- /images/icons/paddle/3-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/3-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/3.png -------------------------------------------------------------------------------- /images/icons/paddle/4-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/4-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/4.png -------------------------------------------------------------------------------- /images/icons/paddle/5-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/5-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/5.png -------------------------------------------------------------------------------- /images/icons/paddle/6-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/6-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/6.png -------------------------------------------------------------------------------- /images/icons/paddle/7-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/7-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/7.png -------------------------------------------------------------------------------- /images/icons/paddle/8-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/8-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/8.png -------------------------------------------------------------------------------- /images/icons/paddle/9-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/9-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/9.png -------------------------------------------------------------------------------- /images/icons/paddle/a-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/a-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/a.png -------------------------------------------------------------------------------- /images/icons/paddle/b-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/b-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/b.png -------------------------------------------------------------------------------- /images/icons/paddle/blu-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/blu-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/blu-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/blu-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/blu-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/blu-diamond.png -------------------------------------------------------------------------------- /images/icons/paddle/blu-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/blu-square.png -------------------------------------------------------------------------------- /images/icons/paddle/blu-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/blu-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/c-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/c-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/c.png -------------------------------------------------------------------------------- /images/icons/paddle/d-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/d-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/d.png -------------------------------------------------------------------------------- /images/icons/paddle/e-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/e-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/e.png -------------------------------------------------------------------------------- /images/icons/paddle/f-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/f-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/f.png -------------------------------------------------------------------------------- /images/icons/paddle/g-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/g-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/g.png -------------------------------------------------------------------------------- /images/icons/paddle/go-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/go-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/go.png -------------------------------------------------------------------------------- /images/icons/paddle/grn-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/grn-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/grn-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/grn-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/grn-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/grn-diamond.png -------------------------------------------------------------------------------- /images/icons/paddle/grn-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/grn-square.png -------------------------------------------------------------------------------- /images/icons/paddle/grn-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/grn-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/h-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/h-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/h.png -------------------------------------------------------------------------------- /images/icons/paddle/i-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/i-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/i.png -------------------------------------------------------------------------------- /images/icons/paddle/j-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/j-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/j.png -------------------------------------------------------------------------------- /images/icons/paddle/k-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/k-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/k.png -------------------------------------------------------------------------------- /images/icons/paddle/l-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/l-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/l.png -------------------------------------------------------------------------------- /images/icons/paddle/ltblu-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ltblu-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/ltblu-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ltblu-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/m-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/m-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/m.png -------------------------------------------------------------------------------- /images/icons/paddle/n-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/n-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/n.png -------------------------------------------------------------------------------- /images/icons/paddle/o-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/o-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/o.png -------------------------------------------------------------------------------- /images/icons/paddle/p-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/p-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/p.png -------------------------------------------------------------------------------- /images/icons/paddle/pause-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pause-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pause.png -------------------------------------------------------------------------------- /images/icons/paddle/pink-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pink-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/pink-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pink-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/pink-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pink-square.png -------------------------------------------------------------------------------- /images/icons/paddle/pink-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/pink-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/q-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/q-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/q.png -------------------------------------------------------------------------------- /images/icons/paddle/r-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/r-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/r.png -------------------------------------------------------------------------------- /images/icons/paddle/red-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/red-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/red-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/red-diamond.png -------------------------------------------------------------------------------- /images/icons/paddle/red-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/red-square.png -------------------------------------------------------------------------------- /images/icons/paddle/red-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/red-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/route.png -------------------------------------------------------------------------------- /images/icons/paddle/s-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/s-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/s.png -------------------------------------------------------------------------------- /images/icons/paddle/stop-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/stop-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/stop.png -------------------------------------------------------------------------------- /images/icons/paddle/t-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/t-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/t.png -------------------------------------------------------------------------------- /images/icons/paddle/u-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/u-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/u.png -------------------------------------------------------------------------------- /images/icons/paddle/v-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/v-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/v.png -------------------------------------------------------------------------------- /images/icons/paddle/w-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/w-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/w.png -------------------------------------------------------------------------------- /images/icons/paddle/wht-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/wht-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/wht-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/wht-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/wht-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/wht-diamond.png -------------------------------------------------------------------------------- /images/icons/paddle/wht-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/wht-square.png -------------------------------------------------------------------------------- /images/icons/paddle/wht-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/wht-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/x-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/x-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/x.png -------------------------------------------------------------------------------- /images/icons/paddle/y-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/y-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/y.png -------------------------------------------------------------------------------- /images/icons/paddle/ylw-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ylw-blank.png -------------------------------------------------------------------------------- /images/icons/paddle/ylw-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ylw-circle.png -------------------------------------------------------------------------------- /images/icons/paddle/ylw-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ylw-diamond.png -------------------------------------------------------------------------------- /images/icons/paddle/ylw-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ylw-square.png -------------------------------------------------------------------------------- /images/icons/paddle/ylw-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/ylw-stars.png -------------------------------------------------------------------------------- /images/icons/paddle/z-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/z-lv.png -------------------------------------------------------------------------------- /images/icons/paddle/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/paddle/z.png -------------------------------------------------------------------------------- /images/icons/shapes/airports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/airports.png -------------------------------------------------------------------------------- /images/icons/shapes/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/arrow.png -------------------------------------------------------------------------------- /images/icons/shapes/arts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/arts.png -------------------------------------------------------------------------------- /images/icons/shapes/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/bars.png -------------------------------------------------------------------------------- /images/icons/shapes/broken_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/broken_link.png -------------------------------------------------------------------------------- /images/icons/shapes/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/bus.png -------------------------------------------------------------------------------- /images/icons/shapes/cabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/cabs.png -------------------------------------------------------------------------------- /images/icons/shapes/camera-lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/camera-lv.png -------------------------------------------------------------------------------- /images/icons/shapes/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/camera.png -------------------------------------------------------------------------------- /images/icons/shapes/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/campfire.png -------------------------------------------------------------------------------- /images/icons/shapes/campground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/campground.png -------------------------------------------------------------------------------- /images/icons/shapes/capital_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/capital_big.png -------------------------------------------------------------------------------- /images/icons/shapes/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/caution.png -------------------------------------------------------------------------------- /images/icons/shapes/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/church.png -------------------------------------------------------------------------------- /images/icons/shapes/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/coffee.png -------------------------------------------------------------------------------- /images/icons/shapes/convenience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/convenience.png -------------------------------------------------------------------------------- /images/icons/shapes/cross-hairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/cross-hairs.png -------------------------------------------------------------------------------- /images/icons/shapes/cycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/cycling.png -------------------------------------------------------------------------------- /images/icons/shapes/dining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/dining.png -------------------------------------------------------------------------------- /images/icons/shapes/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/dollar.png -------------------------------------------------------------------------------- /images/icons/shapes/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/donut.png -------------------------------------------------------------------------------- /images/icons/shapes/earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/earthquake.png -------------------------------------------------------------------------------- /images/icons/shapes/electronics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/electronics.png -------------------------------------------------------------------------------- /images/icons/shapes/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/euro.png -------------------------------------------------------------------------------- /images/icons/shapes/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/ferry.png -------------------------------------------------------------------------------- /images/icons/shapes/firedept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/firedept.png -------------------------------------------------------------------------------- /images/icons/shapes/fishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/fishing.png -------------------------------------------------------------------------------- /images/icons/shapes/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/flag.png -------------------------------------------------------------------------------- /images/icons/shapes/forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/forbidden.png -------------------------------------------------------------------------------- /images/icons/shapes/golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/golf.png -------------------------------------------------------------------------------- /images/icons/shapes/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/grocery.png -------------------------------------------------------------------------------- /images/icons/shapes/heliport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/heliport.png -------------------------------------------------------------------------------- /images/icons/shapes/highway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/highway.png -------------------------------------------------------------------------------- /images/icons/shapes/hiker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/hiker.png -------------------------------------------------------------------------------- /images/icons/shapes/hospitals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/hospitals.png -------------------------------------------------------------------------------- /images/icons/shapes/info-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/info-i.png -------------------------------------------------------------------------------- /images/icons/shapes/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/info.png -------------------------------------------------------------------------------- /images/icons/shapes/info_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/info_circle.png -------------------------------------------------------------------------------- /images/icons/shapes/lodging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/lodging.png -------------------------------------------------------------------------------- /images/icons/shapes/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/man.png -------------------------------------------------------------------------------- /images/icons/shapes/marina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/marina.png -------------------------------------------------------------------------------- /images/icons/shapes/mechanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/mechanic.png -------------------------------------------------------------------------------- /images/icons/shapes/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/mountains.png -------------------------------------------------------------------------------- /images/icons/shapes/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/movies.png -------------------------------------------------------------------------------- /images/icons/shapes/parking_lot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/parking_lot.png -------------------------------------------------------------------------------- /images/icons/shapes/parks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/parks.png -------------------------------------------------------------------------------- /images/icons/shapes/pharmacy_rx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/pharmacy_rx.png -------------------------------------------------------------------------------- /images/icons/shapes/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/phone.png -------------------------------------------------------------------------------- /images/icons/shapes/picnic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/picnic.png -------------------------------------------------------------------------------- /images/icons/shapes/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/play.png -------------------------------------------------------------------------------- /images/icons/shapes/poi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/poi.png -------------------------------------------------------------------------------- /images/icons/shapes/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/police.png -------------------------------------------------------------------------------- /images/icons/shapes/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/polygon.png -------------------------------------------------------------------------------- /images/icons/shapes/post_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/post_office.png -------------------------------------------------------------------------------- /images/icons/shapes/rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/rail.png -------------------------------------------------------------------------------- /images/icons/shapes/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/rainy.png -------------------------------------------------------------------------------- /images/icons/shapes/realestate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/realestate.png -------------------------------------------------------------------------------- /images/icons/shapes/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/ruler.png -------------------------------------------------------------------------------- /images/icons/shapes/sailing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/sailing.png -------------------------------------------------------------------------------- /images/icons/shapes/salon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/salon.png -------------------------------------------------------------------------------- /images/icons/shapes/schools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/schools.png -------------------------------------------------------------------------------- /images/icons/shapes/shaded_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/shaded_dot.png -------------------------------------------------------------------------------- /images/icons/shapes/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/shopping.png -------------------------------------------------------------------------------- /images/icons/shapes/ski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/ski.png -------------------------------------------------------------------------------- /images/icons/shapes/snack_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/snack_bar.png -------------------------------------------------------------------------------- /images/icons/shapes/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/square.png -------------------------------------------------------------------------------- /images/icons/shapes/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/star.png -------------------------------------------------------------------------------- /images/icons/shapes/subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/subway.png -------------------------------------------------------------------------------- /images/icons/shapes/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/sunny.png -------------------------------------------------------------------------------- /images/icons/shapes/swimming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/swimming.png -------------------------------------------------------------------------------- /images/icons/shapes/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/terrain.png -------------------------------------------------------------------------------- /images/icons/shapes/toilets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/toilets.png -------------------------------------------------------------------------------- /images/icons/shapes/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/trail.png -------------------------------------------------------------------------------- /images/icons/shapes/tram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/tram.png -------------------------------------------------------------------------------- /images/icons/shapes/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/triangle.png -------------------------------------------------------------------------------- /images/icons/shapes/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/truck.png -------------------------------------------------------------------------------- /images/icons/shapes/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/volcano.png -------------------------------------------------------------------------------- /images/icons/shapes/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/water.png -------------------------------------------------------------------------------- /images/icons/shapes/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/webcam.png -------------------------------------------------------------------------------- /images/icons/shapes/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/woman.png -------------------------------------------------------------------------------- /images/icons/shapes/yen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/icons/shapes/yen.png -------------------------------------------------------------------------------- /images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/layers.png -------------------------------------------------------------------------------- /images/loberror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/loberror.png -------------------------------------------------------------------------------- /images/lock_tiny_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/lock_tiny_white.png -------------------------------------------------------------------------------- /images/opensphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/opensphere.png -------------------------------------------------------------------------------- /images/search_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/search_gray.png -------------------------------------------------------------------------------- /images/state-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/state-base.png -------------------------------------------------------------------------------- /images/subtle_freckles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/subtle_freckles.png -------------------------------------------------------------------------------- /images/tiles-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/tiles-base.png -------------------------------------------------------------------------------- /images/time-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/time-base.png -------------------------------------------------------------------------------- /images/vendor/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/angular.png -------------------------------------------------------------------------------- /images/vendor/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/bootstrap.png -------------------------------------------------------------------------------- /images/vendor/cesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/cesium.png -------------------------------------------------------------------------------- /images/vendor/closure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/closure.png -------------------------------------------------------------------------------- /images/vendor/fontawesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/fontawesome.png -------------------------------------------------------------------------------- /images/vendor/jquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/jquery.gif -------------------------------------------------------------------------------- /images/vendor/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/jquery.png -------------------------------------------------------------------------------- /images/vendor/ol3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/vendor/ol3.png -------------------------------------------------------------------------------- /images/whitey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/images/whitey.png -------------------------------------------------------------------------------- /scss/os/_configstep.scss: -------------------------------------------------------------------------------- 1 | .c-config-step__preview-grid { 2 | height: 20vh; 3 | } 4 | 5 | .c-config-step__wizard-grid { 6 | height: 20vh; 7 | } 8 | -------------------------------------------------------------------------------- /scss/os/_consent.scss: -------------------------------------------------------------------------------- 1 | .c-consent { 2 | .modal.c-consent__modal.show { 3 | z-index: $zindex-tooltip + 3; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /scss/os/_link.scss: -------------------------------------------------------------------------------- 1 | .link.disabled { 2 | pointer-events: none; 3 | 4 | i { 5 | color: #6c757d; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scss/os/_loading.scss: -------------------------------------------------------------------------------- 1 | .c-loading__text-position { 2 | left: 30%; 3 | position: absolute; 4 | } 5 | -------------------------------------------------------------------------------- /scss/os/_ringoptions.scss: -------------------------------------------------------------------------------- 1 | .c-ring-scroll-section { 2 | max-height: 10rem; 3 | } 4 | -------------------------------------------------------------------------------- /scss/os/_singlepage.scss: -------------------------------------------------------------------------------- 1 | // CSS rules specific to single page applications. 2 | body { 3 | overflow: hidden; 4 | } 5 | -------------------------------------------------------------------------------- /scss/os/_sitemessage.scss: -------------------------------------------------------------------------------- 1 | .c-sitemessage { 2 | .modal.c-sitemessage__modal.show { 3 | z-index: $zindex-tooltip + 2; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /scss/os/_variables.scss: -------------------------------------------------------------------------------- 1 | //This is our base zindex since bootstraps has z-indexs up to at least 10. 2 | $u-zindex-base: 500; 3 | -------------------------------------------------------------------------------- /scss/os/_vectorstylecontrol.scss: -------------------------------------------------------------------------------- 1 | .c-vectorstylecontrol__borderdash { 2 | fill: none; 3 | stroke: $input-color; 4 | stroke-width: 3; 5 | } 6 | -------------------------------------------------------------------------------- /scss/overrides_default_compact/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/bootswatch'; 2 | @import 'compact/bootswatch'; 3 | -------------------------------------------------------------------------------- /scss/overrides_default_compact/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/variables'; 2 | @import 'compact/variables'; 3 | -------------------------------------------------------------------------------- /scss/overrides_default_compact_cb_b/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/bootswatch'; 2 | @import 'compact/bootswatch'; 3 | @import 'cb_b/bootswatch'; 4 | -------------------------------------------------------------------------------- /scss/overrides_default_compact_cb_rg/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/bootswatch'; 2 | @import 'compact/bootswatch'; 3 | @import 'cb_rg/bootswatch'; 4 | -------------------------------------------------------------------------------- /scss/overrides_default_compact_cb_rg/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_rg/variables'; 2 | @import 'overrides_default/variables'; 3 | @import 'compact/variables'; 4 | -------------------------------------------------------------------------------- /scss/overrides_default_standard/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/bootswatch'; 2 | @import 'standard/bootswatch'; 3 | -------------------------------------------------------------------------------- /scss/overrides_default_standard/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/variables'; 2 | @import 'standard/variables'; 3 | -------------------------------------------------------------------------------- /scss/overrides_default_standard_cb_b/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_default/bootswatch'; 2 | @import 'standard/bootswatch'; 3 | @import 'cb_b/bootswatch'; 4 | -------------------------------------------------------------------------------- /scss/overrides_default_standard_cb_rg/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_rg/variables'; 2 | @import 'overrides_default/variables'; 3 | @import 'standard/variables'; 4 | -------------------------------------------------------------------------------- /scss/overrides_slate_compact/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_slate/bootswatch'; 2 | @import 'compact/bootswatch'; 3 | -------------------------------------------------------------------------------- /scss/overrides_slate_compact/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_slate/variables'; 2 | @import 'compact/variables'; 3 | -------------------------------------------------------------------------------- /scss/overrides_slate_compact_cb_b/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_b/variables'; 2 | @import 'overrides_slate/variables'; 3 | @import 'compact/variables'; 4 | -------------------------------------------------------------------------------- /scss/overrides_slate_compact_cb_rg/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_rg/variables'; 2 | @import 'overrides_slate/variables'; 3 | @import 'compact/variables'; 4 | -------------------------------------------------------------------------------- /scss/overrides_slate_standard/_bootswatch.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_slate/bootswatch'; 2 | @import 'standard/bootswatch'; 3 | -------------------------------------------------------------------------------- /scss/overrides_slate_standard/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'overrides_slate/variables'; 2 | @import 'standard/variables'; 3 | -------------------------------------------------------------------------------- /scss/overrides_slate_standard_cb_b/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_b/variables'; 2 | @import 'overrides_slate/variables'; 3 | @import 'standard/variables'; 4 | -------------------------------------------------------------------------------- /scss/overrides_slate_standard_cb_rg/_variables.scss: -------------------------------------------------------------------------------- 1 | @import 'cb_rg/variables'; 2 | @import 'overrides_slate/variables'; 3 | @import 'standard/variables'; 4 | -------------------------------------------------------------------------------- /src/os/job/README.md: -------------------------------------------------------------------------------- 1 | The testWorker.js file here is the sample for using the Job/JobManager stack. 2 | -------------------------------------------------------------------------------- /src/os/ui/state/state.js: -------------------------------------------------------------------------------- 1 | goog.declareModuleId('os.ui.state'); 2 | 3 | /** 4 | * @type {string} 5 | */ 6 | export const EXPORT_WINDOW_ID = 'stateExport'; 7 | -------------------------------------------------------------------------------- /src/plugin/config/config.js: -------------------------------------------------------------------------------- 1 | goog.declareModuleId('plugin.config'); 2 | 3 | /** 4 | * @type {string} 5 | */ 6 | export const ID = 'config'; 7 | -------------------------------------------------------------------------------- /test/os/net/some.json: -------------------------------------------------------------------------------- 1 | { 2 | "some": "json", 3 | "value": 2 4 | } 5 | -------------------------------------------------------------------------------- /test/os/ui/onboarding/noTitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/os/ui/onboarding/noTitle.json -------------------------------------------------------------------------------- /test/plugin/pelias/geocoder/malformed.json: -------------------------------------------------------------------------------- 1 | thisisnotjson 2 | -------------------------------------------------------------------------------- /test/plugin/pelias/geocoder/nofeatures.json: -------------------------------------------------------------------------------- 1 | { 2 | "msg": "something else happened" 3 | } 4 | -------------------------------------------------------------------------------- /test/resources/bin/rand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/bin/rand.bin -------------------------------------------------------------------------------- /test/resources/foo.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /test/resources/html/no-doctype.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Testing 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/resources/html/old-doctype.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/resources/html/sample.html: -------------------------------------------------------------------------------- 1 | 2 | Something 3 |

This is a test of the something something system.

4 | -------------------------------------------------------------------------------- /test/resources/json/ERROR_invalid_field.json: -------------------------------------------------------------------------------- 1 | {invalid: true} 2 | -------------------------------------------------------------------------------- /test/resources/json/ERROR_invalid_field2.json: -------------------------------------------------------------------------------- 1 | {'invalid': true} 2 | 3 | -------------------------------------------------------------------------------- /test/resources/json/ERROR_invalid_value.json: -------------------------------------------------------------------------------- 1 | {"field": invalid value} 2 | -------------------------------------------------------------------------------- /test/resources/json/ERROR_invalid_value2.json: -------------------------------------------------------------------------------- 1 | {"field": 'invalid value'} 2 | -------------------------------------------------------------------------------- /test/resources/json/ERROR_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, 2, 3,] 2 | 3 | -------------------------------------------------------------------------------- /test/resources/json/partial_array.json: -------------------------------------------------------------------------------- 1 | { 2 | "field": [1, 2 3 | 4 | -------------------------------------------------------------------------------- /test/resources/json/partial_null.json: -------------------------------------------------------------------------------- 1 | {"field": nu 2 | -------------------------------------------------------------------------------- /test/resources/json/partial_number.json: -------------------------------------------------------------------------------- 1 | {"field": 1E- 2 | -------------------------------------------------------------------------------- /test/resources/json/partial_object.json: -------------------------------------------------------------------------------- 1 | { 2 | "string": "string", 3 | "number": 123, 4 | "boolean": true, 5 | "null": null, 6 | -------------------------------------------------------------------------------- /test/resources/json/partial_string.json: -------------------------------------------------------------------------------- 1 | {"field": "There once was a 2 | -------------------------------------------------------------------------------- /test/resources/pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/pdf/test.pdf -------------------------------------------------------------------------------- /test/resources/shp/example.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/shp/example.dbf -------------------------------------------------------------------------------- /test/resources/shp/example.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/shp/example.shp -------------------------------------------------------------------------------- /test/resources/shp/example.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/shp/example.shx -------------------------------------------------------------------------------- /test/resources/shp/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/shp/example.zip -------------------------------------------------------------------------------- /test/resources/text/big5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/big5.bin -------------------------------------------------------------------------------- /test/resources/text/euc-jp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/euc-jp.bin -------------------------------------------------------------------------------- /test/resources/text/euc-kr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/euc-kr.bin -------------------------------------------------------------------------------- /test/resources/text/gb-2312.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/gb-2312.bin -------------------------------------------------------------------------------- /test/resources/text/iso-2022-jp.2.bin: -------------------------------------------------------------------------------- 1 | $B$3$l$O(BISO-2022-JP$B$G%3!<%G%#%s%0$5$l$?F|K\8l$N%U%!%$%k$G$9!#(B 2 | -------------------------------------------------------------------------------- /test/resources/text/iso-2022-jp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/iso-2022-jp.bin -------------------------------------------------------------------------------- /test/resources/text/shift-jis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/shift-jis.bin -------------------------------------------------------------------------------- /test/resources/text/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/utf16.bin -------------------------------------------------------------------------------- /test/resources/text/utf16be.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/utf16be.bin -------------------------------------------------------------------------------- /test/resources/text/utf16le.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/opensphere/5f621bd2f0da6ad092c1a028efa8107de298c229/test/resources/text/utf16le.bin -------------------------------------------------------------------------------- /test/resources/xml/ERROR_text-before-root.xml: -------------------------------------------------------------------------------- 1 | This is a test 2 | 3 | 1 4 | 5 | -------------------------------------------------------------------------------- /test/resources/xml/namespaced-root-partial.xml: -------------------------------------------------------------------------------- 1 | {{item.name}} 2 | -------------------------------------------------------------------------------- /views/config/metricdetails.html: -------------------------------------------------------------------------------- 1 |
2 |
{{details.getLabel()}}
3 | 4 |
5 | -------------------------------------------------------------------------------- /views/plugin/google/places/attrcard.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /views/plugin/pelias/geocoder/attrcard.html: -------------------------------------------------------------------------------- 1 |
2 | --------------------------------------------------------------------------------