-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 733fe12
Showing
19 changed files
with
204 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
Licensed/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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&z={$z}&x={$x}&y={$y}&format=png&version=201901161110&layer=background&locale=default&cs=1&protocol=https</url> | ||
<serverParts>1 2 3 4</serverParts> | ||
</customMapSource> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |