├── .docker └── httpd.conf ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── @ocap ├── addons │ └── ocap │ │ ├── config.cpp │ │ └── functions │ │ ├── fn_addEventHandlers.sqf │ │ ├── fn_callExtension.sqf │ │ ├── fn_eh_connected.sqf │ │ ├── fn_eh_disconnected.sqf │ │ ├── fn_eh_fired.sqf │ │ ├── fn_eh_hit.sqf │ │ ├── fn_eh_killed.sqf │ │ ├── fn_exportData.sqf │ │ ├── fn_init.sqf │ │ ├── fn_log.sqf │ │ └── fn_startCaptureLoop.sqf ├── licence.txt ├── logo_ocap.gif ├── ocap_exporter.dll ├── readme.html └── userconfig │ └── ocap │ └── config.hpp ├── Dockerfile ├── README.md ├── docker-compose.yml ├── extension ├── OCAPExporter │ ├── OCAPExporter.sln │ └── OCAPExporter │ │ ├── App.config │ │ ├── Class1.cs │ │ ├── FodyWeavers.xml │ │ ├── OCAPExporter.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── OCAPExporterTester │ ├── OCAPExporterTester.sln │ └── OCAPExporterTester │ │ ├── App.config │ │ ├── OCAPExporterTester.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── licence.txt ├── licence.txt ├── tiles_tut ├── Arma Tile Creation Guide.txt ├── gdal2tiles_legacy_no-tms.bat ├── gdal2tiles_legacy_no-tms.py └── useful_links.txt └── web ├── .htaccess ├── admin └── index.php ├── common.php ├── data └── receive.php ├── images ├── 3cb-logo.png ├── bullets.svg ├── crosshairs.png ├── favicon.png ├── folder.png ├── fullscreen.png ├── maps │ └── README ├── markers │ ├── apc │ │ ├── apc-blufor.svg │ │ ├── apc-civ.svg │ │ ├── apc-dead.svg │ │ ├── apc-follow.svg │ │ ├── apc-hit.svg │ │ ├── apc-ind.svg │ │ └── apc-opfor.svg │ ├── car │ │ ├── car-blufor.svg │ │ ├── car-civ.svg │ │ ├── car-dead.svg │ │ ├── car-follow.svg │ │ ├── car-hit.svg │ │ ├── car-ind.svg │ │ └── car-opfor.svg │ ├── heli │ │ ├── heli-blufor.svg │ │ ├── heli-civ.svg │ │ ├── heli-dead.svg │ │ ├── heli-follow.svg │ │ ├── heli-hit.svg │ │ ├── heli-ind.svg │ │ └── heli-opfor.svg │ ├── man │ │ ├── man-blufor.svg │ │ ├── man-civ.svg │ │ ├── man-dead.svg │ │ ├── man-follow.svg │ │ ├── man-hit.svg │ │ ├── man-ind.svg │ │ └── man-opfor.svg │ ├── parachute │ │ ├── parachute-blufor.svg │ │ ├── parachute-civ.svg │ │ ├── parachute-dead.svg │ │ ├── parachute-follow.svg │ │ ├── parachute-hit.svg │ │ ├── parachute-ind.svg │ │ └── parachute-opfor.svg │ ├── plane │ │ ├── plane-blufor.svg │ │ ├── plane-civ.svg │ │ ├── plane-dead.svg │ │ ├── plane-follow.svg │ │ ├── plane-hit.svg │ │ ├── plane-ind.svg │ │ └── plane-opfor.svg │ ├── ship │ │ ├── ship-blufor.svg │ │ ├── ship-civ.svg │ │ ├── ship-dead.svg │ │ ├── ship-follow.svg │ │ ├── ship-hit.svg │ │ ├── ship-ind.svg │ │ └── ship-opfor.svg │ ├── tank │ │ ├── tank-blufor.svg │ │ ├── tank-civ.svg │ │ ├── tank-dead.svg │ │ ├── tank-follow.svg │ │ ├── tank-hit.svg │ │ ├── tank-ind.svg │ │ └── tank-opfor.svg │ ├── truck │ │ ├── truck-blufor.svg │ │ ├── truck-civ.svg │ │ ├── truck-dead.svg │ │ ├── truck-follow.svg │ │ ├── truck-hit.svg │ │ ├── truck-ind.svg │ │ └── truck-opfor.svg │ └── unknown │ │ ├── unknown-blufor.svg │ │ ├── unknown-civ.svg │ │ ├── unknown-dead.svg │ │ ├── unknown-follow.svg │ │ ├── unknown-hit.svg │ │ ├── unknown-ind.svg │ │ └── unknown-opfor.svg ├── ocap-logo.png └── play-pause.png ├── index.php ├── install ├── dummy_data.json ├── index.php └── install.php ├── licence.txt ├── scripts ├── images │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ └── marker-shadow.png ├── jquery.min.js ├── leaflet-1.0.0-rc1.js ├── leaflet.rotatedMarker.js ├── leaflet.svgIcon.js └── ocap.js └── style ├── admin.css ├── common.css ├── index.css ├── leaflet-1.0.0-rc1.css └── leaflet.label.css /.docker/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/.docker/httpd.conf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /@ocap/addons/ocap/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/config.cpp -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_addEventHandlers.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_addEventHandlers.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_callExtension.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_callExtension.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_eh_connected.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_eh_connected.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_eh_disconnected.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_eh_disconnected.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_eh_fired.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_eh_fired.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_eh_hit.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_eh_hit.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_eh_killed.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_eh_killed.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_exportData.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_exportData.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_init.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_init.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_log.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_log.sqf -------------------------------------------------------------------------------- /@ocap/addons/ocap/functions/fn_startCaptureLoop.sqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/addons/ocap/functions/fn_startCaptureLoop.sqf -------------------------------------------------------------------------------- /@ocap/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/licence.txt -------------------------------------------------------------------------------- /@ocap/logo_ocap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/logo_ocap.gif -------------------------------------------------------------------------------- /@ocap/ocap_exporter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/ocap_exporter.dll -------------------------------------------------------------------------------- /@ocap/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/readme.html -------------------------------------------------------------------------------- /@ocap/userconfig/ocap/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/@ocap/userconfig/ocap/config.hpp -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter.sln -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/App.config -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/Class1.cs -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/FodyWeavers.xml -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/OCAPExporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/OCAPExporter.csproj -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/OCAPExporter/OCAPExporter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporter/OCAPExporter/packages.config -------------------------------------------------------------------------------- /extension/OCAPExporterTester/OCAPExporterTester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporterTester/OCAPExporterTester.sln -------------------------------------------------------------------------------- /extension/OCAPExporterTester/OCAPExporterTester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporterTester/OCAPExporterTester/App.config -------------------------------------------------------------------------------- /extension/OCAPExporterTester/OCAPExporterTester/OCAPExporterTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporterTester/OCAPExporterTester/OCAPExporterTester.csproj -------------------------------------------------------------------------------- /extension/OCAPExporterTester/OCAPExporterTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporterTester/OCAPExporterTester/Program.cs -------------------------------------------------------------------------------- /extension/OCAPExporterTester/OCAPExporterTester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/OCAPExporterTester/OCAPExporterTester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/extension/licence.txt -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/licence.txt -------------------------------------------------------------------------------- /tiles_tut/Arma Tile Creation Guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/tiles_tut/Arma Tile Creation Guide.txt -------------------------------------------------------------------------------- /tiles_tut/gdal2tiles_legacy_no-tms.bat: -------------------------------------------------------------------------------- 1 | @python "%OSGEO4W_ROOT%\bin\gdal2tiles_legacy_no-tms.py" %* 2 | -------------------------------------------------------------------------------- /tiles_tut/gdal2tiles_legacy_no-tms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/tiles_tut/gdal2tiles_legacy_no-tms.py -------------------------------------------------------------------------------- /tiles_tut/useful_links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/tiles_tut/useful_links.txt -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/admin/index.php -------------------------------------------------------------------------------- /web/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/common.php -------------------------------------------------------------------------------- /web/data/receive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/data/receive.php -------------------------------------------------------------------------------- /web/images/3cb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/3cb-logo.png -------------------------------------------------------------------------------- /web/images/bullets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/bullets.svg -------------------------------------------------------------------------------- /web/images/crosshairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/crosshairs.png -------------------------------------------------------------------------------- /web/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/favicon.png -------------------------------------------------------------------------------- /web/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/folder.png -------------------------------------------------------------------------------- /web/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/fullscreen.png -------------------------------------------------------------------------------- /web/images/maps/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/images/markers/apc/apc-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-civ.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-dead.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-follow.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-hit.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-ind.svg -------------------------------------------------------------------------------- /web/images/markers/apc/apc-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/apc/apc-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-civ.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-dead.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-follow.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-hit.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-ind.svg -------------------------------------------------------------------------------- /web/images/markers/car/car-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/car/car-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-civ.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-dead.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-follow.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-hit.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-ind.svg -------------------------------------------------------------------------------- /web/images/markers/heli/heli-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/heli/heli-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-civ.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-dead.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-follow.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-hit.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-ind.svg -------------------------------------------------------------------------------- /web/images/markers/man/man-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/man/man-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-civ.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-dead.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-follow.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-hit.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-ind.svg -------------------------------------------------------------------------------- /web/images/markers/parachute/parachute-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/parachute/parachute-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-civ.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-dead.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-follow.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-hit.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-ind.svg -------------------------------------------------------------------------------- /web/images/markers/plane/plane-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/plane/plane-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-civ.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-dead.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-follow.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-hit.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-ind.svg -------------------------------------------------------------------------------- /web/images/markers/ship/ship-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/ship/ship-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-civ.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-dead.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-follow.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-hit.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-ind.svg -------------------------------------------------------------------------------- /web/images/markers/tank/tank-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/tank/tank-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-civ.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-dead.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-follow.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-hit.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-ind.svg -------------------------------------------------------------------------------- /web/images/markers/truck/truck-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/truck/truck-opfor.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-blufor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-blufor.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-civ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-civ.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-dead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-dead.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-follow.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-hit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-hit.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-ind.svg -------------------------------------------------------------------------------- /web/images/markers/unknown/unknown-opfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/markers/unknown/unknown-opfor.svg -------------------------------------------------------------------------------- /web/images/ocap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/ocap-logo.png -------------------------------------------------------------------------------- /web/images/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/images/play-pause.png -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/index.php -------------------------------------------------------------------------------- /web/install/dummy_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/install/dummy_data.json -------------------------------------------------------------------------------- /web/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/install/index.php -------------------------------------------------------------------------------- /web/install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/install/install.php -------------------------------------------------------------------------------- /web/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/licence.txt -------------------------------------------------------------------------------- /web/scripts/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/images/layers-2x.png -------------------------------------------------------------------------------- /web/scripts/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/images/layers.png -------------------------------------------------------------------------------- /web/scripts/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/images/marker-icon-2x.png -------------------------------------------------------------------------------- /web/scripts/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/images/marker-icon.png -------------------------------------------------------------------------------- /web/scripts/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/images/marker-shadow.png -------------------------------------------------------------------------------- /web/scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/jquery.min.js -------------------------------------------------------------------------------- /web/scripts/leaflet-1.0.0-rc1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/leaflet-1.0.0-rc1.js -------------------------------------------------------------------------------- /web/scripts/leaflet.rotatedMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/leaflet.rotatedMarker.js -------------------------------------------------------------------------------- /web/scripts/leaflet.svgIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/leaflet.svgIcon.js -------------------------------------------------------------------------------- /web/scripts/ocap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/scripts/ocap.js -------------------------------------------------------------------------------- /web/style/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/style/admin.css -------------------------------------------------------------------------------- /web/style/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/style/common.css -------------------------------------------------------------------------------- /web/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/style/index.css -------------------------------------------------------------------------------- /web/style/leaflet-1.0.0-rc1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/style/leaflet-1.0.0-rc1.css -------------------------------------------------------------------------------- /web/style/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocapmod/ocap-legacy/HEAD/web/style/leaflet.label.css --------------------------------------------------------------------------------