├── .editorconfig ├── .gitignore ├── .jscsrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── css ├── markers.css └── openlayers.css ├── doc ├── 01-openlayers-directive.md ├── 02-center-attribute.md ├── 03-defaults-attribute.md └── 04-layers-attribute.md ├── examples ├── 010-simple-example.html ├── 020-center-example.html ├── 021-center-url-hash-example.html ├── 022-center-autodiscover-example.html ├── 023-center-constrain-zoom-example.html ├── 024-center-bounds-example.html ├── 025-center-projections-example.html ├── 026-center-no-javascript-example.html ├── 030-custom-parameters-example.html ├── 040-layers-change-tiles-example.html ├── 041-layers-zoom-tiles-changer-example.html ├── 042-layers-opacity-example.html ├── 043-layers-bing-maps-example.html ├── 044-layers-mapquest-maps-example.html ├── 045-layers-geojson-example.html ├── 046-layers-geojson-center-example.html ├── 047-layers-topojson-example.html ├── 048-layers-static-image-example.html ├── 049-layers-stamen-example.html ├── 050-layer-geojson-change-style-example.html ├── 051-layer-geojson-change-style-with-function-example.html ├── 052-heatmap-example.html ├── 053-layers-image-wms-example.html ├── 054-add-remove-multiple-layers-example.html ├── 055-layers-geojon-dynamic-load-example.html ├── 056-layers-no-javascript-example.html ├── 057-layers-wmts-example.html ├── 058-layers-geojson-style-function.html ├── 059-layer-clustering.html ├── 060-marker-example.html ├── 061-markers-add-remove-example.html ├── 062-markers-label-example.html ├── 063-markers-properties-example.html ├── 064-markers-render-html-inside-labels-example.html ├── 065-markers-static-image-layer-example.html ├── 066-markers-with-layers-no-javascript-example.html ├── 067-marker-custom-icon-example.html ├── 070-view-rotation-example.html ├── 080-events-propagation-example.html ├── 081-events-vector-example.html ├── 082-events-vector-dynamic-styles-example.html ├── 083-events-static-image-layer-example.html ├── 084-events-add-markers-on-click-example.html ├── 085-events-kml-example.html ├── 086-events-multi-layer-vector-example.html ├── 090-multiple-maps-example.html ├── 100-controls-example.html ├── 101-controls-fullscreen-example.html ├── 102-controls-measure-example.html ├── 103-controls-custom-example.html ├── 104-controls-options-example.html ├── 105-controls-overviewmap-example.html ├── 110-path-example.html ├── 111-layer-tile-vector-example.html ├── 112-layers-esri-basemaps-example.html ├── 113-layers-image-wms-with-attribution-example.html ├── 120-custom-layer-and-projection-example.html ├── images │ ├── eiffel.jpg │ ├── gizah.jpg │ ├── icon.png │ ├── map-marker.png │ ├── marker.png │ ├── notredame.jpg │ └── versailles.jpg ├── json │ ├── ESP.geo.json │ ├── FRA.geo.json │ ├── ITA.geo.json │ ├── JPN.geo.json │ ├── LIS.geo.json │ ├── PRT.geo.json │ ├── README │ ├── all.json │ ├── countries.geo.json │ ├── europe.topo.json │ ├── features.json │ ├── paths.json │ ├── toronto1.json │ ├── toronto2.json │ └── world.topo.json └── kml │ ├── earthquakes.kml │ └── states.kml ├── grunt ├── aliases.yaml ├── bower.js ├── bump.js ├── changelog.js ├── concat.js ├── connect.js ├── coveralls.js ├── jscs.js ├── jshint.js ├── karma.js ├── ngAnnotate.js ├── open.js ├── pkg.js ├── protractor.js ├── shell.js ├── uglify.js └── watch.js ├── package.json ├── src ├── directives │ ├── center.js │ ├── control.js │ ├── layer.js │ ├── marker.js │ ├── openlayers.js │ ├── path.js │ └── view.js ├── header-MIT-license.txt └── services │ ├── olData.js │ ├── olHelpers.js │ └── olMapDefaults.js └── test ├── e2e ├── 010-simple-example.js └── 020-center-example.js ├── protractor.conf.js └── unit ├── centerSpec.js ├── controlsSpec.js ├── helperSpec.js ├── layersSpec.js ├── markerSpec.js ├── openlayersSpec.js └── viewSpec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/.jscsrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/bower.json -------------------------------------------------------------------------------- /css/markers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/css/markers.css -------------------------------------------------------------------------------- /css/openlayers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/css/openlayers.css -------------------------------------------------------------------------------- /doc/01-openlayers-directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/doc/01-openlayers-directive.md -------------------------------------------------------------------------------- /doc/02-center-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/doc/02-center-attribute.md -------------------------------------------------------------------------------- /doc/03-defaults-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/doc/03-defaults-attribute.md -------------------------------------------------------------------------------- /doc/04-layers-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/doc/04-layers-attribute.md -------------------------------------------------------------------------------- /examples/010-simple-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/010-simple-example.html -------------------------------------------------------------------------------- /examples/020-center-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/020-center-example.html -------------------------------------------------------------------------------- /examples/021-center-url-hash-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/021-center-url-hash-example.html -------------------------------------------------------------------------------- /examples/022-center-autodiscover-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/022-center-autodiscover-example.html -------------------------------------------------------------------------------- /examples/023-center-constrain-zoom-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/023-center-constrain-zoom-example.html -------------------------------------------------------------------------------- /examples/024-center-bounds-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/024-center-bounds-example.html -------------------------------------------------------------------------------- /examples/025-center-projections-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/025-center-projections-example.html -------------------------------------------------------------------------------- /examples/026-center-no-javascript-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/026-center-no-javascript-example.html -------------------------------------------------------------------------------- /examples/030-custom-parameters-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/030-custom-parameters-example.html -------------------------------------------------------------------------------- /examples/040-layers-change-tiles-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/040-layers-change-tiles-example.html -------------------------------------------------------------------------------- /examples/041-layers-zoom-tiles-changer-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/041-layers-zoom-tiles-changer-example.html -------------------------------------------------------------------------------- /examples/042-layers-opacity-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/042-layers-opacity-example.html -------------------------------------------------------------------------------- /examples/043-layers-bing-maps-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/043-layers-bing-maps-example.html -------------------------------------------------------------------------------- /examples/044-layers-mapquest-maps-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/044-layers-mapquest-maps-example.html -------------------------------------------------------------------------------- /examples/045-layers-geojson-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/045-layers-geojson-example.html -------------------------------------------------------------------------------- /examples/046-layers-geojson-center-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/046-layers-geojson-center-example.html -------------------------------------------------------------------------------- /examples/047-layers-topojson-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/047-layers-topojson-example.html -------------------------------------------------------------------------------- /examples/048-layers-static-image-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/048-layers-static-image-example.html -------------------------------------------------------------------------------- /examples/049-layers-stamen-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/049-layers-stamen-example.html -------------------------------------------------------------------------------- /examples/050-layer-geojson-change-style-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/050-layer-geojson-change-style-example.html -------------------------------------------------------------------------------- /examples/051-layer-geojson-change-style-with-function-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/051-layer-geojson-change-style-with-function-example.html -------------------------------------------------------------------------------- /examples/052-heatmap-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/052-heatmap-example.html -------------------------------------------------------------------------------- /examples/053-layers-image-wms-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/053-layers-image-wms-example.html -------------------------------------------------------------------------------- /examples/054-add-remove-multiple-layers-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/054-add-remove-multiple-layers-example.html -------------------------------------------------------------------------------- /examples/055-layers-geojon-dynamic-load-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/055-layers-geojon-dynamic-load-example.html -------------------------------------------------------------------------------- /examples/056-layers-no-javascript-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/056-layers-no-javascript-example.html -------------------------------------------------------------------------------- /examples/057-layers-wmts-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/057-layers-wmts-example.html -------------------------------------------------------------------------------- /examples/058-layers-geojson-style-function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/058-layers-geojson-style-function.html -------------------------------------------------------------------------------- /examples/059-layer-clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/059-layer-clustering.html -------------------------------------------------------------------------------- /examples/060-marker-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/060-marker-example.html -------------------------------------------------------------------------------- /examples/061-markers-add-remove-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/061-markers-add-remove-example.html -------------------------------------------------------------------------------- /examples/062-markers-label-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/062-markers-label-example.html -------------------------------------------------------------------------------- /examples/063-markers-properties-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/063-markers-properties-example.html -------------------------------------------------------------------------------- /examples/064-markers-render-html-inside-labels-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/064-markers-render-html-inside-labels-example.html -------------------------------------------------------------------------------- /examples/065-markers-static-image-layer-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/065-markers-static-image-layer-example.html -------------------------------------------------------------------------------- /examples/066-markers-with-layers-no-javascript-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/066-markers-with-layers-no-javascript-example.html -------------------------------------------------------------------------------- /examples/067-marker-custom-icon-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/067-marker-custom-icon-example.html -------------------------------------------------------------------------------- /examples/070-view-rotation-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/070-view-rotation-example.html -------------------------------------------------------------------------------- /examples/080-events-propagation-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/080-events-propagation-example.html -------------------------------------------------------------------------------- /examples/081-events-vector-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/081-events-vector-example.html -------------------------------------------------------------------------------- /examples/082-events-vector-dynamic-styles-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/082-events-vector-dynamic-styles-example.html -------------------------------------------------------------------------------- /examples/083-events-static-image-layer-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/083-events-static-image-layer-example.html -------------------------------------------------------------------------------- /examples/084-events-add-markers-on-click-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/084-events-add-markers-on-click-example.html -------------------------------------------------------------------------------- /examples/085-events-kml-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/085-events-kml-example.html -------------------------------------------------------------------------------- /examples/086-events-multi-layer-vector-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/086-events-multi-layer-vector-example.html -------------------------------------------------------------------------------- /examples/090-multiple-maps-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/090-multiple-maps-example.html -------------------------------------------------------------------------------- /examples/100-controls-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/100-controls-example.html -------------------------------------------------------------------------------- /examples/101-controls-fullscreen-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/101-controls-fullscreen-example.html -------------------------------------------------------------------------------- /examples/102-controls-measure-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/102-controls-measure-example.html -------------------------------------------------------------------------------- /examples/103-controls-custom-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/103-controls-custom-example.html -------------------------------------------------------------------------------- /examples/104-controls-options-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/104-controls-options-example.html -------------------------------------------------------------------------------- /examples/105-controls-overviewmap-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/105-controls-overviewmap-example.html -------------------------------------------------------------------------------- /examples/110-path-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/110-path-example.html -------------------------------------------------------------------------------- /examples/111-layer-tile-vector-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/111-layer-tile-vector-example.html -------------------------------------------------------------------------------- /examples/112-layers-esri-basemaps-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/112-layers-esri-basemaps-example.html -------------------------------------------------------------------------------- /examples/113-layers-image-wms-with-attribution-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/113-layers-image-wms-with-attribution-example.html -------------------------------------------------------------------------------- /examples/120-custom-layer-and-projection-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/120-custom-layer-and-projection-example.html -------------------------------------------------------------------------------- /examples/images/eiffel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/eiffel.jpg -------------------------------------------------------------------------------- /examples/images/gizah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/gizah.jpg -------------------------------------------------------------------------------- /examples/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/icon.png -------------------------------------------------------------------------------- /examples/images/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/map-marker.png -------------------------------------------------------------------------------- /examples/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/marker.png -------------------------------------------------------------------------------- /examples/images/notredame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/notredame.jpg -------------------------------------------------------------------------------- /examples/images/versailles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/images/versailles.jpg -------------------------------------------------------------------------------- /examples/json/ESP.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/ESP.geo.json -------------------------------------------------------------------------------- /examples/json/FRA.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/FRA.geo.json -------------------------------------------------------------------------------- /examples/json/ITA.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/ITA.geo.json -------------------------------------------------------------------------------- /examples/json/JPN.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/JPN.geo.json -------------------------------------------------------------------------------- /examples/json/LIS.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/LIS.geo.json -------------------------------------------------------------------------------- /examples/json/PRT.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/PRT.geo.json -------------------------------------------------------------------------------- /examples/json/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/README -------------------------------------------------------------------------------- /examples/json/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/all.json -------------------------------------------------------------------------------- /examples/json/countries.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/countries.geo.json -------------------------------------------------------------------------------- /examples/json/europe.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/europe.topo.json -------------------------------------------------------------------------------- /examples/json/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/features.json -------------------------------------------------------------------------------- /examples/json/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/paths.json -------------------------------------------------------------------------------- /examples/json/toronto1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/toronto1.json -------------------------------------------------------------------------------- /examples/json/toronto2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/toronto2.json -------------------------------------------------------------------------------- /examples/json/world.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/json/world.topo.json -------------------------------------------------------------------------------- /examples/kml/earthquakes.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/kml/earthquakes.kml -------------------------------------------------------------------------------- /examples/kml/states.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/examples/kml/states.kml -------------------------------------------------------------------------------- /grunt/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/aliases.yaml -------------------------------------------------------------------------------- /grunt/bower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/bower.js -------------------------------------------------------------------------------- /grunt/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/bump.js -------------------------------------------------------------------------------- /grunt/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/changelog.js -------------------------------------------------------------------------------- /grunt/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/concat.js -------------------------------------------------------------------------------- /grunt/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/connect.js -------------------------------------------------------------------------------- /grunt/coveralls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/coveralls.js -------------------------------------------------------------------------------- /grunt/jscs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/jscs.js -------------------------------------------------------------------------------- /grunt/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/jshint.js -------------------------------------------------------------------------------- /grunt/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/karma.js -------------------------------------------------------------------------------- /grunt/ngAnnotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/ngAnnotate.js -------------------------------------------------------------------------------- /grunt/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/open.js -------------------------------------------------------------------------------- /grunt/pkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/pkg.js -------------------------------------------------------------------------------- /grunt/protractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/protractor.js -------------------------------------------------------------------------------- /grunt/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/shell.js -------------------------------------------------------------------------------- /grunt/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/uglify.js -------------------------------------------------------------------------------- /grunt/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/grunt/watch.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/package.json -------------------------------------------------------------------------------- /src/directives/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/center.js -------------------------------------------------------------------------------- /src/directives/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/control.js -------------------------------------------------------------------------------- /src/directives/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/layer.js -------------------------------------------------------------------------------- /src/directives/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/marker.js -------------------------------------------------------------------------------- /src/directives/openlayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/openlayers.js -------------------------------------------------------------------------------- /src/directives/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/path.js -------------------------------------------------------------------------------- /src/directives/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/directives/view.js -------------------------------------------------------------------------------- /src/header-MIT-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/header-MIT-license.txt -------------------------------------------------------------------------------- /src/services/olData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/services/olData.js -------------------------------------------------------------------------------- /src/services/olHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/services/olHelpers.js -------------------------------------------------------------------------------- /src/services/olMapDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/src/services/olMapDefaults.js -------------------------------------------------------------------------------- /test/e2e/010-simple-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/e2e/010-simple-example.js -------------------------------------------------------------------------------- /test/e2e/020-center-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/e2e/020-center-example.js -------------------------------------------------------------------------------- /test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/protractor.conf.js -------------------------------------------------------------------------------- /test/unit/centerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/centerSpec.js -------------------------------------------------------------------------------- /test/unit/controlsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/controlsSpec.js -------------------------------------------------------------------------------- /test/unit/helperSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/helperSpec.js -------------------------------------------------------------------------------- /test/unit/layersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/layersSpec.js -------------------------------------------------------------------------------- /test/unit/markerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/markerSpec.js -------------------------------------------------------------------------------- /test/unit/openlayersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/openlayersSpec.js -------------------------------------------------------------------------------- /test/unit/viewSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatossals/angular-openlayers-directive/HEAD/test/unit/viewSpec.js --------------------------------------------------------------------------------