├── .editorconfig ├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── NOTICE ├── README.md ├── api-usage-examples.md ├── demo ├── css │ ├── bootstrap │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ └── demo.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── apple-touch-icon-114-precomposed.png │ ├── apple-touch-icon-144-precomposed.png │ ├── apple-touch-icon-57-precomposed.png │ ├── apple-touch-icon-72-precomposed.png │ ├── favicon.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── index.html ├── js │ ├── apidriver.js │ ├── bootstrap.min.js │ ├── html5shiv.js │ └── jquery.min.js └── resources │ ├── exampleGeo.json │ └── mapperz-kml-example.kml ├── dev ├── css │ └── twomaps.css ├── custom.css ├── marker.png ├── ol3.html ├── ol3.js └── twomaps.html ├── dist ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ └── leaflet.css ├── mapapi.js ├── mapapi.min.js ├── mapapi_ol2_only.js ├── mapapi_ol2_only.min.js └── openlayers │ ├── google.css │ ├── ie6-style.css │ ├── img │ ├── add_point_off.png │ ├── add_point_on.png │ ├── blank.gif │ ├── close.gif │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── draw_line_off.png │ ├── draw_line_on.png │ ├── draw_point_off.png │ ├── draw_point_on.png │ ├── draw_polygon_off.png │ ├── draw_polygon_on.png │ ├── editing_tool_bar.png │ ├── move_feature_off.png │ ├── move_feature_on.png │ ├── navigation_history.png │ ├── overview_replacement.gif │ ├── pan-panel-NOALPHA.png │ ├── pan-panel.png │ ├── pan_off.png │ ├── pan_on.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── remove_point_off.png │ ├── remove_point_on.png │ ├── ruler.png │ ├── save_features_off.png │ ├── save_features_on.png │ ├── view_next_off.png │ ├── view_next_on.png │ ├── view_previous_off.png │ ├── view_previous_on.png │ ├── zoom-panel-NOALPHA.png │ └── zoom-panel.png │ ├── ol3 │ └── ol.css │ ├── style.css │ └── style.mobile.css ├── distributions.json ├── docs └── mapapi_jsdoc.zip ├── grunt ├── browserify.js ├── clean.js ├── copy.js ├── csslint.js ├── env.js ├── express.js ├── htmlhint.js ├── jscs.js ├── jsdoc.js ├── jshint.js ├── nightwatch.js ├── plato.js ├── uglify.js └── watch.js ├── js ├── app │ ├── api.js │ ├── core │ │ ├── EventManager.js │ │ ├── adapterManager.js │ │ ├── const.js │ │ ├── defaultLoader.js │ │ ├── facade.js │ │ ├── mapManager.js │ │ ├── object │ │ │ ├── ArcGIS93RestLayer.js │ │ │ ├── ArcGISCacheLayer.js │ │ │ ├── Coordinate.js │ │ │ ├── GeoJsonLayer.js │ │ │ ├── Image.js │ │ │ ├── KMLLayer.js │ │ │ ├── WMSLayer.js │ │ │ └── WMTSLayer.js │ │ ├── objectFactory.js │ │ └── objectValidator.js │ ├── leaflet │ │ ├── leafletAdapter.js │ │ ├── leafletConst.js │ │ ├── leafletLoader.js │ │ └── leafletUtil.js │ ├── openLayers │ │ ├── ol3 │ │ │ ├── ol3Adapter.js │ │ │ ├── ol3Const.js │ │ │ ├── ol3Loader.js │ │ │ └── ol3Util.js │ │ ├── olAdapter.js │ │ ├── olLoader.js │ │ └── olUtil.js │ └── util │ │ └── appUtils.js └── assets │ ├── README.txt │ ├── leaflet.Graticule │ ├── .bower.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── choropleth-us.html │ │ ├── choropleth.html │ │ ├── css │ │ │ └── map.css │ │ ├── data │ │ │ ├── countries-110m.json │ │ │ ├── countries-50m.json │ │ │ └── footprint.js │ │ ├── graticule.html │ │ ├── lib │ │ │ ├── leaflet.label.js │ │ │ ├── proj4js-compressed.js │ │ │ ├── proj4leaflet.js │ │ │ ├── reqwest.min.js │ │ │ └── tme.color.js │ │ └── security-council.html │ └── src │ │ ├── L.CartoDB.js │ │ ├── L.Categorical.js │ │ ├── L.Choropleth.js │ │ ├── L.Graticule.js │ │ └── L.Wax.js │ ├── leaflet.esrirest │ ├── LICENSE.md │ └── TileLayer.EsriRest.js │ ├── leaflet.mouseposition │ ├── MIT-LICENCE.txt │ ├── README.md │ └── src │ │ ├── L.Control.MousePosition.css │ │ └── L.Control.MousePosition.js │ ├── ol3 │ ├── ol.css │ └── ol.js │ └── openLayers │ └── 2.13.1 │ ├── OpenLayers.js │ └── theme │ └── default │ ├── google.css │ ├── ie6-style.css │ ├── img │ ├── add_point_off.png │ ├── add_point_on.png │ ├── blank.gif │ ├── close.gif │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── draw_line_off.png │ ├── draw_line_on.png │ ├── draw_point_off.png │ ├── draw_point_on.png │ ├── draw_polygon_off.png │ ├── draw_polygon_on.png │ ├── editing_tool_bar.png │ ├── move_feature_off.png │ ├── move_feature_on.png │ ├── navigation_history.png │ ├── overview_replacement.gif │ ├── pan-panel-NOALPHA.png │ ├── pan-panel.png │ ├── pan_off.png │ ├── pan_on.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── remove_point_off.png │ ├── remove_point_on.png │ ├── ruler.png │ ├── save_features_off.png │ ├── save_features_on.png │ ├── view_next_off.png │ ├── view_next_on.png │ ├── view_previous_off.png │ ├── view_previous_on.png │ ├── zoom-panel-NOALPHA.png │ └── zoom-panel.png │ ├── style.css │ └── style.mobile.css ├── jscs.json ├── jsdoc.conf.json ├── lint.json ├── npm-shrinkwrap.json ├── package.json ├── server.js ├── test ├── constants │ └── demoApp.js ├── tests │ ├── addVectorLayerTest.js │ ├── addWmtsLayerTest.js │ ├── clearAllFeaturesTest.js │ ├── createLineTest.js │ ├── createMapLeafletTest.js │ ├── createMapOL2Test.js │ ├── createMapOL3Test.js │ ├── createMultipointTest.js │ ├── createPointTest.js │ ├── createPolygonTest.js │ ├── getCenterTest.js │ ├── getZoomTest.js │ ├── removeLineTest.js │ ├── removeMultipointTest.js │ ├── removePointTest.js │ ├── removePolygonTest.js │ ├── setCenterTest.js │ ├── setZoomTest.js │ ├── toggleCoordinatesOffTest.js │ ├── toggleCoordinatesOnTest.js │ ├── toggleGraticuleOffTest.js │ ├── toggleGraticuleOnTest.js │ ├── toggleScaleOffTest.js │ ├── toggleScaleOnTest.js │ ├── toggleZoomOffTest.js │ ├── toggleZoomOnTest.js │ ├── zoomInTest.js │ ├── zoomOutTest.js │ ├── zoomToDataTest.js │ └── zoomToFullExtentTest.js ├── testsuites │ ├── demoAppTestSuite.js │ └── demoAppTestSuiteOL3.js └── util │ └── demoAppUtils.js └── testConfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/README.md -------------------------------------------------------------------------------- /api-usage-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/api-usage-examples.md -------------------------------------------------------------------------------- /demo/css/bootstrap/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/css/bootstrap/bootstrap-theme.css -------------------------------------------------------------------------------- /demo/css/bootstrap/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/css/bootstrap/bootstrap-theme.min.css -------------------------------------------------------------------------------- /demo/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /demo/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/css/demo.css -------------------------------------------------------------------------------- /demo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demo/img/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /demo/img/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /demo/img/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /demo/img/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /demo/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/favicon.png -------------------------------------------------------------------------------- /demo/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /demo/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/js/apidriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/js/apidriver.js -------------------------------------------------------------------------------- /demo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/js/html5shiv.js -------------------------------------------------------------------------------- /demo/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/js/jquery.min.js -------------------------------------------------------------------------------- /demo/resources/exampleGeo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/resources/exampleGeo.json -------------------------------------------------------------------------------- /demo/resources/mapperz-kml-example.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/demo/resources/mapperz-kml-example.kml -------------------------------------------------------------------------------- /dev/css/twomaps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dev/css/twomaps.css -------------------------------------------------------------------------------- /dev/custom.css: -------------------------------------------------------------------------------- 1 | .map { height: 750px; width: 100%; } -------------------------------------------------------------------------------- /dev/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dev/marker.png -------------------------------------------------------------------------------- /dev/ol3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dev/ol3.html -------------------------------------------------------------------------------- /dev/ol3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dev/ol3.js -------------------------------------------------------------------------------- /dev/twomaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dev/twomaps.html -------------------------------------------------------------------------------- /dist/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /dist/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/images/layers.png -------------------------------------------------------------------------------- /dist/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /dist/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /dist/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /dist/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/leaflet/leaflet.css -------------------------------------------------------------------------------- /dist/mapapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/mapapi.js -------------------------------------------------------------------------------- /dist/mapapi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/mapapi.min.js -------------------------------------------------------------------------------- /dist/mapapi_ol2_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/mapapi_ol2_only.js -------------------------------------------------------------------------------- /dist/mapapi_ol2_only.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/mapapi_ol2_only.min.js -------------------------------------------------------------------------------- /dist/openlayers/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/google.css -------------------------------------------------------------------------------- /dist/openlayers/ie6-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/ie6-style.css -------------------------------------------------------------------------------- /dist/openlayers/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/add_point_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/add_point_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/blank.gif -------------------------------------------------------------------------------- /dist/openlayers/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/close.gif -------------------------------------------------------------------------------- /dist/openlayers/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /dist/openlayers/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_line_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_line_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_point_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_point_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_polygon_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/draw_polygon_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/editing_tool_bar.png -------------------------------------------------------------------------------- /dist/openlayers/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/move_feature_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/move_feature_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/navigation_history.png -------------------------------------------------------------------------------- /dist/openlayers/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/overview_replacement.gif -------------------------------------------------------------------------------- /dist/openlayers/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /dist/openlayers/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/pan-panel.png -------------------------------------------------------------------------------- /dist/openlayers/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/pan_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/pan_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/panning-hand-off.png -------------------------------------------------------------------------------- /dist/openlayers/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/panning-hand-on.png -------------------------------------------------------------------------------- /dist/openlayers/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/remove_point_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/remove_point_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/ruler.png -------------------------------------------------------------------------------- /dist/openlayers/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/save_features_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/save_features_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/view_next_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/view_next_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/view_previous_off.png -------------------------------------------------------------------------------- /dist/openlayers/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/view_previous_on.png -------------------------------------------------------------------------------- /dist/openlayers/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /dist/openlayers/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/img/zoom-panel.png -------------------------------------------------------------------------------- /dist/openlayers/ol3/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/ol3/ol.css -------------------------------------------------------------------------------- /dist/openlayers/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/style.css -------------------------------------------------------------------------------- /dist/openlayers/style.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/dist/openlayers/style.mobile.css -------------------------------------------------------------------------------- /distributions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/distributions.json -------------------------------------------------------------------------------- /docs/mapapi_jsdoc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/docs/mapapi_jsdoc.zip -------------------------------------------------------------------------------- /grunt/browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/browserify.js -------------------------------------------------------------------------------- /grunt/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/clean.js -------------------------------------------------------------------------------- /grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/copy.js -------------------------------------------------------------------------------- /grunt/csslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/csslint.js -------------------------------------------------------------------------------- /grunt/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/env.js -------------------------------------------------------------------------------- /grunt/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/express.js -------------------------------------------------------------------------------- /grunt/htmlhint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/htmlhint.js -------------------------------------------------------------------------------- /grunt/jscs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/jscs.js -------------------------------------------------------------------------------- /grunt/jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/jsdoc.js -------------------------------------------------------------------------------- /grunt/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/jshint.js -------------------------------------------------------------------------------- /grunt/nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/nightwatch.js -------------------------------------------------------------------------------- /grunt/plato.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/plato.js -------------------------------------------------------------------------------- /grunt/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/uglify.js -------------------------------------------------------------------------------- /grunt/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/grunt/watch.js -------------------------------------------------------------------------------- /js/app/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/api.js -------------------------------------------------------------------------------- /js/app/core/EventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/EventManager.js -------------------------------------------------------------------------------- /js/app/core/adapterManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/adapterManager.js -------------------------------------------------------------------------------- /js/app/core/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/const.js -------------------------------------------------------------------------------- /js/app/core/defaultLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/defaultLoader.js -------------------------------------------------------------------------------- /js/app/core/facade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/facade.js -------------------------------------------------------------------------------- /js/app/core/mapManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/mapManager.js -------------------------------------------------------------------------------- /js/app/core/object/ArcGIS93RestLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/ArcGIS93RestLayer.js -------------------------------------------------------------------------------- /js/app/core/object/ArcGISCacheLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/ArcGISCacheLayer.js -------------------------------------------------------------------------------- /js/app/core/object/Coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/Coordinate.js -------------------------------------------------------------------------------- /js/app/core/object/GeoJsonLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/GeoJsonLayer.js -------------------------------------------------------------------------------- /js/app/core/object/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/Image.js -------------------------------------------------------------------------------- /js/app/core/object/KMLLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/KMLLayer.js -------------------------------------------------------------------------------- /js/app/core/object/WMSLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/WMSLayer.js -------------------------------------------------------------------------------- /js/app/core/object/WMTSLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/object/WMTSLayer.js -------------------------------------------------------------------------------- /js/app/core/objectFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/objectFactory.js -------------------------------------------------------------------------------- /js/app/core/objectValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/core/objectValidator.js -------------------------------------------------------------------------------- /js/app/leaflet/leafletAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/leaflet/leafletAdapter.js -------------------------------------------------------------------------------- /js/app/leaflet/leafletConst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/leaflet/leafletConst.js -------------------------------------------------------------------------------- /js/app/leaflet/leafletLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/leaflet/leafletLoader.js -------------------------------------------------------------------------------- /js/app/leaflet/leafletUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/leaflet/leafletUtil.js -------------------------------------------------------------------------------- /js/app/openLayers/ol3/ol3Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/ol3/ol3Adapter.js -------------------------------------------------------------------------------- /js/app/openLayers/ol3/ol3Const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/ol3/ol3Const.js -------------------------------------------------------------------------------- /js/app/openLayers/ol3/ol3Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/ol3/ol3Loader.js -------------------------------------------------------------------------------- /js/app/openLayers/ol3/ol3Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/ol3/ol3Util.js -------------------------------------------------------------------------------- /js/app/openLayers/olAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/olAdapter.js -------------------------------------------------------------------------------- /js/app/openLayers/olLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/olLoader.js -------------------------------------------------------------------------------- /js/app/openLayers/olUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/openLayers/olUtil.js -------------------------------------------------------------------------------- /js/app/util/appUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/app/util/appUtils.js -------------------------------------------------------------------------------- /js/assets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/README.txt -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/.bower.json -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/.gitignore -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/LICENSE -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/README.md -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/choropleth-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/choropleth-us.html -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/choropleth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/choropleth.html -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/css/map.css -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/data/countries-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/data/countries-110m.json -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/data/countries-50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/data/countries-50m.json -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/data/footprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/data/footprint.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/graticule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/graticule.html -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/lib/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/lib/leaflet.label.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/lib/proj4js-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/lib/proj4js-compressed.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/lib/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/lib/proj4leaflet.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/lib/reqwest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/lib/reqwest.min.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/lib/tme.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/lib/tme.color.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/examples/security-council.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/examples/security-council.html -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/src/L.CartoDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/src/L.CartoDB.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/src/L.Categorical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/src/L.Categorical.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/src/L.Choropleth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/src/L.Choropleth.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/src/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/src/L.Graticule.js -------------------------------------------------------------------------------- /js/assets/leaflet.Graticule/src/L.Wax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.Graticule/src/L.Wax.js -------------------------------------------------------------------------------- /js/assets/leaflet.esrirest/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.esrirest/LICENSE.md -------------------------------------------------------------------------------- /js/assets/leaflet.esrirest/TileLayer.EsriRest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.esrirest/TileLayer.EsriRest.js -------------------------------------------------------------------------------- /js/assets/leaflet.mouseposition/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.mouseposition/MIT-LICENCE.txt -------------------------------------------------------------------------------- /js/assets/leaflet.mouseposition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.mouseposition/README.md -------------------------------------------------------------------------------- /js/assets/leaflet.mouseposition/src/L.Control.MousePosition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.mouseposition/src/L.Control.MousePosition.css -------------------------------------------------------------------------------- /js/assets/leaflet.mouseposition/src/L.Control.MousePosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/leaflet.mouseposition/src/L.Control.MousePosition.js -------------------------------------------------------------------------------- /js/assets/ol3/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/ol3/ol.css -------------------------------------------------------------------------------- /js/assets/ol3/ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/ol3/ol.js -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/OpenLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/OpenLayers.js -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/google.css -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/ie6-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/ie6-style.css -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/blank.gif -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/close.gif -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/ruler.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/style.css -------------------------------------------------------------------------------- /js/assets/openLayers/2.13.1/theme/default/style.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/js/assets/openLayers/2.13.1/theme/default/style.mobile.css -------------------------------------------------------------------------------- /jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/jscs.json -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/lint.json -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/server.js -------------------------------------------------------------------------------- /test/constants/demoApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/constants/demoApp.js -------------------------------------------------------------------------------- /test/tests/addVectorLayerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/addVectorLayerTest.js -------------------------------------------------------------------------------- /test/tests/addWmtsLayerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/addWmtsLayerTest.js -------------------------------------------------------------------------------- /test/tests/clearAllFeaturesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/clearAllFeaturesTest.js -------------------------------------------------------------------------------- /test/tests/createLineTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createLineTest.js -------------------------------------------------------------------------------- /test/tests/createMapLeafletTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createMapLeafletTest.js -------------------------------------------------------------------------------- /test/tests/createMapOL2Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createMapOL2Test.js -------------------------------------------------------------------------------- /test/tests/createMapOL3Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createMapOL3Test.js -------------------------------------------------------------------------------- /test/tests/createMultipointTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createMultipointTest.js -------------------------------------------------------------------------------- /test/tests/createPointTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createPointTest.js -------------------------------------------------------------------------------- /test/tests/createPolygonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/createPolygonTest.js -------------------------------------------------------------------------------- /test/tests/getCenterTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/getCenterTest.js -------------------------------------------------------------------------------- /test/tests/getZoomTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/getZoomTest.js -------------------------------------------------------------------------------- /test/tests/removeLineTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/removeLineTest.js -------------------------------------------------------------------------------- /test/tests/removeMultipointTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/removeMultipointTest.js -------------------------------------------------------------------------------- /test/tests/removePointTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/removePointTest.js -------------------------------------------------------------------------------- /test/tests/removePolygonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/removePolygonTest.js -------------------------------------------------------------------------------- /test/tests/setCenterTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/setCenterTest.js -------------------------------------------------------------------------------- /test/tests/setZoomTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/setZoomTest.js -------------------------------------------------------------------------------- /test/tests/toggleCoordinatesOffTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleCoordinatesOffTest.js -------------------------------------------------------------------------------- /test/tests/toggleCoordinatesOnTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleCoordinatesOnTest.js -------------------------------------------------------------------------------- /test/tests/toggleGraticuleOffTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleGraticuleOffTest.js -------------------------------------------------------------------------------- /test/tests/toggleGraticuleOnTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleGraticuleOnTest.js -------------------------------------------------------------------------------- /test/tests/toggleScaleOffTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleScaleOffTest.js -------------------------------------------------------------------------------- /test/tests/toggleScaleOnTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleScaleOnTest.js -------------------------------------------------------------------------------- /test/tests/toggleZoomOffTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleZoomOffTest.js -------------------------------------------------------------------------------- /test/tests/toggleZoomOnTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/toggleZoomOnTest.js -------------------------------------------------------------------------------- /test/tests/zoomInTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/zoomInTest.js -------------------------------------------------------------------------------- /test/tests/zoomOutTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/zoomOutTest.js -------------------------------------------------------------------------------- /test/tests/zoomToDataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/zoomToDataTest.js -------------------------------------------------------------------------------- /test/tests/zoomToFullExtentTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/tests/zoomToFullExtentTest.js -------------------------------------------------------------------------------- /test/testsuites/demoAppTestSuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/testsuites/demoAppTestSuite.js -------------------------------------------------------------------------------- /test/testsuites/demoAppTestSuiteOL3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/testsuites/demoAppTestSuiteOL3.js -------------------------------------------------------------------------------- /test/util/demoAppUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/test/util/demoAppUtils.js -------------------------------------------------------------------------------- /testConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/map-of-world-api/HEAD/testConfig.json --------------------------------------------------------------------------------