Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuafuller committed Jul 17, 2020
0 parents commit 733fe12
Show file tree
Hide file tree
Showing 19 changed files with 204 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
38 changes: 38 additions & 0 deletions .github/workflows/zip_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Upload Release Asset

jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project # This would actually build your project, using zip for an example artifact
run: |
zip -r MOBAC-Maps . -i \*.xml
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./MOBAC-Maps.zip
asset_name: MOBAC-Maps.zip
asset_content_type: application/zip
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

Licensed/*
9 changes: 9 additions & 0 deletions Chartbundle/Chartbundle IFR High.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<customMapSource>
<name>Chartbundle IFR High</name>
<minZoom>4</minZoom>
<maxZoom>13</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>http://wms.chartbundle.com/tms/v1.0/enrh/{$z}/{$x}/{$y}.png?type=google</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
9 changes: 9 additions & 0 deletions Chartbundle/Chartbundle IFR Low.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<customMapSource>
<name>Chartbundle IFR Low</name>
<minZoom>4</minZoom>
<maxZoom>13</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>http://wms.chartbundle.com/tms/v1.0/enrl/{$z}/{$x}/{$y}.png?type=google</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
9 changes: 9 additions & 0 deletions Chartbundle/Chartbundle Sectional.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<customMapSource>
<name>Chartbundle Sectional</name>
<minZoom>4</minZoom>
<maxZoom>12</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>http://wms.chartbundle.com/tms/v1.0/sec/{$z}/{$x}/{$y}.png?type=google</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
10 changes: 10 additions & 0 deletions ESRI/ESRI Clarity.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>ESRI World Imagery (Clarity) Beta</name>
<minZoom>1</minZoom>
<maxZoom>20</maxZoom>
<tileType>jpg</tileType>
<tileUpdate>None</tileUpdate>
<url>http://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
10 changes: 10 additions & 0 deletions ESRI/ESRI Nat Geo World.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>ESRI Nat Geo World</name>
<minZoom>1</minZoom>
<maxZoom>20</maxZoom>
<tileType>jpg</tileType>
<tileUpdate>None</tileUpdate>
<url>https://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
9 changes: 9 additions & 0 deletions Michelin/OSM Michelin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>

<customMapSource>
<name>OSM Michelin</name>
<minZoom>0</minZoom>
<maxZoom>19</maxZoom>
<url>https://map{$serverpart}.viamichelin.com/map/mapdirect?map=viamichelin&amp;z={$z}&amp;x={$x}&amp;y={$y}&amp;format=png&amp;version=201901161110&amp;layer=background&amp;locale=default&amp;cs=1&amp;protocol=https</url>
<serverParts>1 2 3 4</serverParts>
</customMapSource>
12 changes: 12 additions & 0 deletions OSM/OSMStandard.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>OSM Standard</name>
<minZoom>0</minZoom>
<maxZoom>18</maxZoom>
<tileType>png</tileType>
<url>http://tile.openstreetmap.org/{$z}/{$x}/{$y}.png</url>
<tileUpdate>None</tileUpdate>
<backgroundColor>#000000</backgroundColor>
<ignoreErrors>false</ignoreErrors>
<serverParts></serverParts>
</customMapSource>
10 changes: 10 additions & 0 deletions OpenTopo/opentopomap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customMapSource>
<name>Open Topo Map</name>
<minZoom>1</minZoom>
<maxZoom>17</maxZoom>
<tileType>PNG</tileType>
<tileUpdate>IfNoneMatch</tileUpdate>
<serverParts>a b c</serverParts>
<url>https://{$serverpart}.tile.opentopomap.org/{$z}/{$x}/{$y}.png</url>
</customMapSource>
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

[SCREENSHOTS]

## ATAK-Maps
A collection of maps for use in [**ATAK**](https://github.com/deptofdefense/AndroidTacticalAssaultKit-CIV)

Pull requests for new map providers are welcome!
![GitHub All Releases](https://img.shields.io/github/downloads/joshuafuller/ATAK-Maps/total?style=flat-square)
12 changes: 12 additions & 0 deletions Stamen/Stamen Terrain.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>Stamen Terrain</name>
<minZoom>0</minZoom>
<maxZoom>18</maxZoom>
<tileType>png</tileType>
<url>http://tile.stamen.com/terrain/{$z}/{$x}/{$y}.png</url>
<tileUpdate>None</tileUpdate>
<backgroundColor>#000000</backgroundColor>
<ignoreErrors>false</ignoreErrors>
<serverParts></serverParts>
</customMapSource>
12 changes: 12 additions & 0 deletions Stamen/Stamen Toner.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>Stamen Toner</name>
<minZoom>0</minZoom>
<maxZoom>18</maxZoom>
<tileType>png</tileType>
<url>http://tile.stamen.com/toner/{$z}/{$x}/{$y}.png</url>
<tileUpdate>None</tileUpdate>
<backgroundColor>#000000</backgroundColor>
<ignoreErrors>false</ignoreErrors>
<serverParts></serverParts>
</customMapSource>
12 changes: 12 additions & 0 deletions Stamen/Stamen Watercolor.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>Stamen Watercolor</name>
<minZoom>0</minZoom>
<maxZoom>18</maxZoom>
<tileType>png</tileType>
<url>http://tile.stamen.com/watercolor/{$z}/{$x}/{$y}.png</url>
<tileUpdate>None</tileUpdate>
<backgroundColor>#000000</backgroundColor>
<ignoreErrors>false</ignoreErrors>
<serverParts></serverParts>
</customMapSource>
10 changes: 10 additions & 0 deletions USGS/USGSBasemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>USGS</name>
<minZoom>0</minZoom>
<maxZoom>15</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>https://basemap.nationalmap.gov/ArcGIS/rest/services/USGSTopo/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
10 changes: 10 additions & 0 deletions USGS/USGSImageryOnly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>USGSImageryOnly</name>
<minZoom>0</minZoom>
<maxZoom>15</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>https://basemap.nationalmap.gov/ArcGIS/rest/services/USGSImageryOnly/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
10 changes: 10 additions & 0 deletions USGS/USGSImageryTopo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>USGSImageryTopo</name>
<minZoom>0</minZoom>
<maxZoom>15</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>https://basemap.nationalmap.gov/ArcGIS/rest/services/USGSImageryTopo/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
10 changes: 10 additions & 0 deletions USGS/USGSShadedRelief.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>USGSShadedRelief</name>
<minZoom>0</minZoom>
<maxZoom>15</maxZoom>
<tileType>png</tileType>
<tileUpdate>None</tileUpdate>
<url>https://basemap.nationalmap.gov/arcgis/rest/services/USGSShadedReliefOnly/MapServer/tile/{$z}/{$y}/{$x}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>

0 comments on commit 733fe12

Please sign in to comment.