├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── android.yml ├── .gitignore ├── .sonarcloud.properties ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── app ├── .directory ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── dbarnett │ │ └── acastus │ │ └── ApplicationTest.java │ ├── debug │ └── res │ │ ├── values-cs │ │ └── fdroid.xml │ │ ├── values-de │ │ └── fdroid.xml │ │ ├── values-es │ │ └── fdroid.xml │ │ ├── values-fr │ │ └── fdroid.xml │ │ ├── values-it │ │ └── fdroid.xml │ │ ├── values-pl │ │ └── fdroid.xml │ │ ├── values-pt │ │ └── fdroid.xml │ │ ├── values-tr │ │ └── fdroid.xml │ │ ├── values-zh-rCN │ │ └── fdroid.xml │ │ └── values │ │ └── fdroid.xml │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── ic_marker-web.png │ ├── ic_my_position-web.png │ ├── ic_navigation-web.png │ ├── java │ │ └── name │ │ │ └── gdr │ │ │ └── acastus_photon │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ ├── GeoLocation.java │ │ │ ├── LocationAvailableListener.java │ │ │ ├── MainActivity.java │ │ │ ├── MakeAPIRequest.java │ │ │ ├── ResultNode.java │ │ │ ├── SettingsActivity.java │ │ │ └── ViewMapActivity.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_action_cancel.png │ │ ├── ic_info_black_24dp.png │ │ ├── ic_notifications_black_24dp.png │ │ └── map_marker.png │ │ ├── drawable-mdpi │ │ ├── ic_action_cancel.png │ │ ├── ic_info_black_24dp.png │ │ ├── ic_notifications_black_24dp.png │ │ └── map_marker.png │ │ ├── drawable-v21 │ │ ├── ic_info_black_24dp.xml │ │ ├── ic_notifications_black_24dp.xml │ │ └── ic_sync_black_24dp.xml │ │ ├── drawable-xhdpi │ │ ├── ic_action_cancel.png │ │ ├── ic_info_black_24dp.png │ │ ├── ic_notifications_black_24dp.png │ │ └── map_marker.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_cancel.png │ │ ├── ic_info_black_24dp.png │ │ ├── ic_notifications_black_24dp.png │ │ └── map_marker.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_info_black_24dp.png │ │ ├── ic_notifications_black_24dp.png │ │ └── map_marker.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_view_map.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_marker.png │ │ ├── ic_my_position.png │ │ └── ic_navigation.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_marker.png │ │ ├── ic_my_position.png │ │ └── ic_navigation.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_marker.png │ │ ├── ic_my_position.png │ │ └── ic_navigation.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_marker.png │ │ ├── ic_my_position.png │ │ └── ic_navigation.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_marker.png │ │ ├── ic_my_position.png │ │ └── ic_navigation.png │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-no │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-si │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── pref_general.xml │ │ ├── pref_headers.xml │ │ └── pref_server.xml │ └── test │ └── java │ └── me │ └── dbarnett │ └── acastus │ └── ExampleUnitTest.java ├── crowdin.yml ├── fastlane ├── fd2fastlane.py └── metadata │ └── android │ ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── de-DE │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ └── 28.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ └── 01.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ └── short_description.txt │ ├── fr-FR │ ├── full_description.txt │ └── short_description.txt │ ├── it │ ├── full_description.txt │ └── short_description.txt │ ├── nb │ └── short_description.txt │ ├── pl-PL │ └── short_description.txt │ ├── pl │ ├── full_description.txt │ └── short_description.txt │ ├── pt-BR │ └── short_description.txt │ ├── pt │ ├── full_description.txt │ └── short_description.txt │ ├── tr-TR │ └── short_description.txt │ ├── tr │ └── short_description.txt │ └── zh-CN │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── metadata └── name.gdr.acastus_photon.yml ├── settings.gradle └── styles ├── cinnabar-style-gh-pages ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── cinnabar-style-dark.yaml ├── cinnabar-style.yaml ├── dist │ └── .gitkeep ├── fonts │ ├── Apache License.txt │ ├── Montserrat-Regular.woff │ ├── OpenSans-Bold.woff │ ├── OpenSans-Italic.woff │ ├── OpenSans-Light.woff │ ├── OpenSans-Regular.woff │ ├── OpenSans-Semibold.woff │ └── OpenSans-SemiboldItalic.woff ├── images │ └── refill@2x.png ├── index.html └── lib │ ├── FileSaver.js │ ├── dat.gui.min.js │ ├── keymaster.js │ └── leaflet-hash.js └── tron-style-4.0.0 ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── components ├── fonts.yaml ├── fonts │ ├── 8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff │ ├── 94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff │ ├── IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff │ ├── VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff │ └── ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff ├── globals.yaml └── images │ ├── museum-sdf.png │ ├── museum.png │ ├── sdf.sh │ ├── star-sdf.png │ ├── star.png │ ├── station-sdf.png │ ├── station.png │ ├── subway-sdf.png │ ├── subway.png │ ├── terrain.jpg │ ├── terrain2.jpg │ ├── tron-terrain.jpg │ ├── tron@2x.png │ ├── zoo-sdf.png │ └── zoo.png ├── dist └── .gitkeep ├── index.html ├── layers ├── boundaries-labels.yaml ├── boundaries.yaml ├── buildings-labels.yaml ├── buildings.yaml ├── earth-labels.yaml ├── earth.yaml ├── landuse-labels.yaml ├── landuse.yaml ├── places.yaml ├── pois.yaml ├── roads-labels.yaml ├── roads.yaml ├── transit-overlay.yaml ├── transit.yaml ├── ux-sdk-overlay.yaml ├── water-labels.yaml └── water.yaml ├── lib ├── FileSaver.js ├── dat.gui.min.js └── keymaster.js ├── styles ├── common.yaml ├── lines.yaml ├── points.yaml └── polygons.yaml ├── tron-style-more-labels.yaml ├── tron-style-no-labels.yaml └── tron-style.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/README.md -------------------------------------------------------------------------------- /app/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2016,7,25,15,34,28 3 | Version=3 4 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/me/dbarnett/acastus/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/androidTest/java/me/dbarnett/acastus/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/debug/res/values-cs/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-cs/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-de/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-de/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-es/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-es/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-fr/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-fr/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-it/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-it/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-pl/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-pl/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-pt/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-pt/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-tr/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-tr/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-zh-rCN/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values-zh-rCN/fdroid.xml -------------------------------------------------------------------------------- /app/src/debug/res/values/fdroid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/debug/res/values/fdroid.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/ic_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_marker-web.png -------------------------------------------------------------------------------- /app/src/main/ic_my_position-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_my_position-web.png -------------------------------------------------------------------------------- /app/src/main/ic_navigation-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_navigation-web.png -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/AppCompatPreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/AppCompatPreferenceActivity.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/GeoLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/GeoLocation.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/LocationAvailableListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/LocationAvailableListener.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/MakeAPIRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/MakeAPIRequest.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/ResultNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/ResultNode.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/ViewMapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/java/name/gdr/acastus_photon/ViewMapActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-hdpi/map_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-mdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-mdpi/map_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-v21/ic_info_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-v21/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-v21/ic_sync_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xhdpi/map_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxhdpi/map_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/map_marker.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_view_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/layout/activity_view_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-hdpi/ic_marker.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_my_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-hdpi/ic_my_position.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-hdpi/ic_navigation.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-mdpi/ic_marker.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_my_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-mdpi/ic_my_position.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-mdpi/ic_navigation.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xhdpi/ic_marker.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_my_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xhdpi/ic_my_position.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xhdpi/ic_navigation.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_marker.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_my_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_my_position.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_navigation.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_marker.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_my_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_my_position.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_navigation.png -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-si/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/xml/pref_general.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/xml/pref_headers.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/xml/pref_server.xml -------------------------------------------------------------------------------- /app/src/test/java/me/dbarnett/acastus/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/test/java/me/dbarnett/acastus/ExampleUnitTest.java -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/fd2fastlane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/fd2fastlane.py -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Online adresa/POI pro navigační aplikace. -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Online-Suche nach Adressen/POIs für Navigations-App -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/19.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | New Translation: French (fr) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/21.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/22.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/23.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/24.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/changelogs/27.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/28.txt: -------------------------------------------------------------------------------- 1 | * #29: adapt to Photon API changes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/01.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | An online address/POI search for navigation apps. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | ✉➡🌍 Acastus-Photon -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/es-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/it/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/it/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/nb/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Adres internetowy/wyszukiwanie POI dla aplikacji nawigacyjnych 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/pl/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Wyszukiwanie online adresów/POI dla aplikacji nawigacyjnych -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Uma pesquisa de POI/endereço online para aplicativos de navegação 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/pt/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/short_description.txt: -------------------------------------------------------------------------------- 1 | Um pesquisador online de endereço/POI para aplicativos de navegação. -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/tr-TR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/fastlane/metadata/android/tr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 导航应用的在线地址/POI 搜索 -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradlew.bat -------------------------------------------------------------------------------- /metadata/name.gdr.acastus_photon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/metadata/name.gdr.acastus_photon.yml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/*.zip -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/LICENSE -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/Makefile -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/README.md -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.1 -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/cinnabar-style-dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/cinnabar-style-dark.yaml -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/cinnabar-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/cinnabar-style.yaml -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/Apache License.txt -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/Montserrat-Regular.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Bold.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Italic.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Light.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Semibold.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/fonts/OpenSans-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-SemiboldItalic.woff -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/images/refill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/images/refill@2x.png -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/index.html -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/lib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/lib/FileSaver.js -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/lib/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/lib/dat.gui.min.js -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/lib/keymaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/lib/keymaster.js -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/lib/leaflet-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/lib/leaflet-hash.js -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/*.zip 3 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/.gitmodules -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/LICENSE -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/Makefile -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/README.md -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/fonts/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/globals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/globals.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/museum-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/museum-sdf.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/museum.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/sdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/sdf.sh -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/star-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/star-sdf.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/star.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/station-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/station-sdf.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/station.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/subway-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/subway-sdf.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/subway.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/terrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/terrain.jpg -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/terrain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/terrain2.jpg -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/tron-terrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/tron-terrain.jpg -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/tron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/tron@2x.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/zoo-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/zoo-sdf.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/images/zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/zoo.png -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/index.html -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/boundaries-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/boundaries-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/boundaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/boundaries.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/buildings-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/buildings-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/buildings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/buildings.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/earth-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/earth-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/earth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/earth.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/landuse-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/landuse-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/landuse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/landuse.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/places.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/places.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/pois.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/pois.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/roads-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/roads-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/roads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/roads.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/transit-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/transit-overlay.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/transit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/transit.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/ux-sdk-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/ux-sdk-overlay.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/water-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/water-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/water.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/layers/water.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/lib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/lib/FileSaver.js -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/lib/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/lib/dat.gui.min.js -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/lib/keymaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/lib/keymaster.js -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/styles/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/styles/common.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/styles/lines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/styles/lines.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/styles/points.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/styles/points.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/styles/polygons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/styles/polygons.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/tron-style-more-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/tron-style-more-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/tron-style-no-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/tron-style-no-labels.yaml -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/tron-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/tron-style.yaml --------------------------------------------------------------------------------