├── .sonarcloud.properties ├── app ├── .gitignore ├── .directory ├── src │ ├── main │ │ ├── ic_marker-web.png │ │ ├── ic_launcher-web.png │ │ ├── ic_my_position-web.png │ │ ├── ic_navigation-web.png │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_marker.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_navigation.png │ │ │ │ └── ic_my_position.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_marker.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_navigation.png │ │ │ │ └── ic_my_position.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_marker.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_my_position.png │ │ │ │ └── ic_navigation.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── map_marker.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ └── ic_notifications_black_24dp.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── map_marker.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ └── ic_notifications_black_24dp.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── map_marker.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ └── ic_notifications_black_24dp.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_marker.png │ │ │ │ ├── ic_navigation.png │ │ │ │ └── ic_my_position.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_marker.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_my_position.png │ │ │ │ └── ic_navigation.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── map_marker.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ └── ic_notifications_black_24dp.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── map_marker.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ └── ic_notifications_black_24dp.png │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── donottranslate.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_info_black_24dp.xml │ │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ │ └── ic_sync_black_24dp.xml │ │ │ ├── xml │ │ │ │ ├── pref_headers.xml │ │ │ │ ├── pref_server.xml │ │ │ │ └── pref_general.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_view_map.xml │ │ │ │ └── content_main.xml │ │ │ ├── values-si │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ ├── values-no │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ │ └── strings.xml │ │ │ └── values-fr │ │ │ │ └── strings.xml │ │ ├── java │ │ │ └── name │ │ │ │ └── gdr │ │ │ │ └── acastus_photon │ │ │ │ ├── LocationAvailableListener.java │ │ │ │ ├── ResultNode.java │ │ │ │ ├── MakeAPIRequest.java │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ └── GeoLocation.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── me │ │ │ └── dbarnett │ │ │ └── acastus │ │ │ └── ExampleUnitTest.java │ ├── androidTest │ │ └── java │ │ │ └── me │ │ │ └── dbarnett │ │ │ └── acastus │ │ │ └── ApplicationTest.java │ └── debug │ │ └── res │ │ ├── values-zh-rCN │ │ └── fdroid.xml │ │ ├── values-tr │ │ └── fdroid.xml │ │ ├── values-es │ │ └── fdroid.xml │ │ ├── values-cs │ │ └── fdroid.xml │ │ ├── values-de │ │ └── fdroid.xml │ │ ├── values-fr │ │ └── fdroid.xml │ │ ├── values-pt │ │ └── fdroid.xml │ │ ├── values │ │ └── fdroid.xml │ │ ├── values-it │ │ └── fdroid.xml │ │ └── values-pl │ │ └── fdroid.xml ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── styles ├── tron-style-4.0.0 │ ├── VERSION │ ├── dist │ │ └── .gitkeep │ ├── .gitignore │ ├── .gitmodules │ ├── components │ │ ├── images │ │ │ ├── star.png │ │ │ ├── zoo.png │ │ │ ├── museum.png │ │ │ ├── station.png │ │ │ ├── subway.png │ │ │ ├── terrain.jpg │ │ │ ├── tron@2x.png │ │ │ ├── zoo-sdf.png │ │ │ ├── museum-sdf.png │ │ │ ├── star-sdf.png │ │ │ ├── subway-sdf.png │ │ │ ├── terrain2.jpg │ │ │ ├── station-sdf.png │ │ │ ├── tron-terrain.jpg │ │ │ └── sdf.sh │ │ ├── fonts │ │ │ ├── 8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff │ │ │ ├── 94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff │ │ │ ├── IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff │ │ │ ├── VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff │ │ │ └── ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff │ │ └── fonts.yaml │ ├── Makefile │ ├── layers │ │ ├── earth-labels.yaml │ │ ├── earth.yaml │ │ ├── landuse-labels.yaml │ │ ├── boundaries-labels.yaml │ │ ├── boundaries.yaml │ │ ├── transit.yaml │ │ ├── buildings-labels.yaml │ │ ├── buildings.yaml │ │ └── water-labels.yaml │ ├── styles │ │ ├── common.yaml │ │ ├── lines.yaml │ │ └── polygons.yaml │ ├── LICENSE │ ├── tron-style.yaml │ ├── tron-style-more-labels.yaml │ └── tron-style-no-labels.yaml └── cinnabar-style-gh-pages │ ├── VERSION │ ├── dist │ └── .gitkeep │ ├── .gitignore │ ├── images │ └── refill@2x.png │ ├── fonts │ ├── OpenSans-Bold.woff │ ├── OpenSans-Light.woff │ ├── OpenSans-Italic.woff │ ├── OpenSans-Regular.woff │ ├── Montserrat-Regular.woff │ ├── OpenSans-Semibold.woff │ └── OpenSans-SemiboldItalic.woff │ ├── Makefile │ ├── LICENSE │ ├── lib │ └── leaflet-hash.js │ └── README.md ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── title.txt │ ├── changelogs │ │ ├── 20.txt │ │ ├── 28.txt │ │ ├── 23.txt │ │ ├── 25.txt │ │ ├── 19.txt │ │ ├── 22.txt │ │ ├── 21.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ └── 24.txt │ ├── short_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ └── 01.png │ └── full_description.txt │ ├── zh-CN │ └── short_description.txt │ ├── cs-CZ │ ├── short_description.txt │ └── full_description.txt │ ├── de-DE │ ├── short_description.txt │ └── full_description.txt │ ├── tr │ └── short_description.txt │ ├── pl │ ├── short_description.txt │ └── full_description.txt │ ├── tr-TR │ └── short_description.txt │ ├── pt │ ├── short_description.txt │ └── full_description.txt │ ├── es-ES │ └── short_description.txt │ ├── nb │ └── short_description.txt │ ├── pl-PL │ └── short_description.txt │ ├── pt-BR │ └── short_description.txt │ ├── fr-FR │ ├── short_description.txt │ └── full_description.txt │ └── it │ ├── short_description.txt │ └── full_description.txt ├── .editorconfig ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── CHANGELOG.md ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── android.yml ├── crowdin.yml ├── gradle.properties ├── .travis.yml ├── metadata └── name.gdr.acastus_photon.yml ├── gradlew.bat ├── README.md └── gradlew /.sonarcloud.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.1 -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | ✉➡🌍 Acastus-Photon -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/*.zip 3 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/*.zip -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 导航应用的在线地址/POI 搜索 -------------------------------------------------------------------------------- /app/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2016,7,25,15,34,28 3 | Version=3 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | [*] 3 | indent_style = space 4 | indent_size = 4 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | New Translation: French (fr) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/28.txt: -------------------------------------------------------------------------------- 1 | * #29: adapt to Photon API changes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Online adresa/POI pro navigační aplikace. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | An online address/POI search for navigation apps. -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Online-Suche nach Adressen/POIs für Navigations-App -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigasyon uygulamaları için çevrimiçi adres/POI arama -------------------------------------------------------------------------------- /app/src/main/ic_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_marker-web.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Wyszukiwanie online adresów/POI dla aplikacji nawigacyjnych -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigasyon uygulamaları için çevrimiçi adres/POI arama 2 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/short_description.txt: -------------------------------------------------------------------------------- 1 | Um pesquisador online de endereço/POI para aplicativos de navegação. -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Una búsqueda online de direcciones/POI para aplicaciones de navegación -------------------------------------------------------------------------------- /fastlane/metadata/android/nb/short_description.txt: -------------------------------------------------------------------------------- 1 | Nettbasert adresse/interessepunkts-søk for navigasjonsprogrammer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Adres internetowy/wyszukiwanie POI dla aplikacji nawigacyjnych 2 | -------------------------------------------------------------------------------- /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/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- 1 | Fix displaying of search result names for addresses with house numbers 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Une recherche d’adresse en ligne/POI pour les applications de navigation -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- 1 | Un motore di ricerca online d'indirizzi e punti d'interesse per navigatori -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "blocks"] 2 | path = blocks 3 | url = https://github.com/tangrams/blocks 4 | -------------------------------------------------------------------------------- /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-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-xhdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xhdpi/ic_marker.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/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-mdpi/map_marker.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/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_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_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-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-xxxhdpi/ic_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_marker.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/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/map_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-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-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_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/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-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/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-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 -------------------------------------------------------------------------------- /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/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/zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/zoo.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-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-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-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- 1 | * #13 Fixed Improve GPS energy efficiency 2 | * #19 Fixed Settings-Server icon 3 | * added new translation cs -------------------------------------------------------------------------------- /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/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.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/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 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | .idea 5 | .DS_Store 6 | /build 7 | /captures 8 | /Lint-Report-Dateien 9 | /Lint-Report.htm 10 | -------------------------------------------------------------------------------- /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-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-xxxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /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-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Light.woff -------------------------------------------------------------------------------- /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/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/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/terrain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/terrain2.jpg -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 1.16 2 | 3 | - Added a search parameter for gps assisted queries to work better 4 | - Added an icon in toolbar which is displayed when GPS is in use 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | New Translations: nl and de 2 | Updated support libraries 3 | Added support for fastlane and crowdin translations 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- 1 | Fixed searching for addresses with street-number (#10) 2 | Library updates 3 | Added Screenshot to App-Descrition 4 | -------------------------------------------------------------------------------- /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-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /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/tron-terrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/tron-style-4.0.0/components/images/tron-terrain.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/21.txt: -------------------------------------------------------------------------------- 1 | New Translation: it, no, pt, pt-BR, sv, es, pl 2 | # see https://gradle.org/release-checksums/ 3 | distributionSha256Sum= -------------------------------------------------------------------------------- /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-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/styles/cinnabar-style-gh-pages/fonts/OpenSans-Semibold.woff -------------------------------------------------------------------------------- /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-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-xhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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-xxxhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjedeer/Acastus/HEAD/app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/26.txt: -------------------------------------------------------------------------------- 1 | * #21: Bugfix Search from Android-Addressbook: housenumber,zipcopde interpreted as lat/lon 2 | * #11: Translations new si (Sinhala), updates de, pt 3 | -------------------------------------------------------------------------------- /app/src/main/java/name/gdr/acastus_photon/LocationAvailableListener.java: -------------------------------------------------------------------------------- 1 | package name.gdr.acastus_photon; 2 | 3 | public interface LocationAvailableListener { 4 | public abstract void onLocationAvailable(); 5 | } 6 | -------------------------------------------------------------------------------- /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/images/sdf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | convert $1 -filter Jinc -resize 400% -threshold 30% \( +clone -negate -morphology Distance Euclidean -level 50%,-50% \) -morphology Distance Euclidean -compose Plus -composite -level 0%,100% $2 4 | convert $2 -resize 25% $2 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/27.txt: -------------------------------------------------------------------------------- 1 | * changed app title to "✉➡🌍 Acastus-Photon" (added Symbols) 2 | * #26: #6: #11: i18n: fixed typo in English language: Adress => Address 3 | * #6: #11: i18n: new italian translations by luca-65e709c0 4 | * #6: #11: i18n: updated russian translation 5 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/Makefile: -------------------------------------------------------------------------------- 1 | all: dist 2 | 3 | dist: 4 | tangram-bundle cinnabar-style.yaml 5 | mv cinnabar-style.zip dist/cinnabar-style.zip 6 | 7 | clean: 8 | rm -rf dist 9 | mkdir dist 10 | 11 | tag: 12 | git tag -m 'See CHANGELOG for details.' -a v`cat VERSION` 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | [ ] I have checked that my search works in [Photon](https://photon.komoot.io/), which Acastus uses as a search backend 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /main/res/values/strings.xml 3 | translation: /main/res/values-%two_letters_code%/%original_file_name% 4 | translate_attributes: 0 5 | content_segmentation: 0 6 | - source: /debug/res/values/fdroid.xml 7 | translation: /debug/res/values-%two_letters_code%/%original_file_name% 8 | translate_attributes: 0 9 | content_segmentation: 0 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #00e676 4 | #00c853 5 | #757575 6 | #232629 7 | #fcfcfc 8 | #7f8c8d 9 | 10 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 13 18:07:40 CEST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip 7 | # see https://gradle.org/release-checksums/ 8 | distributionSha256Sum=3239b5ed86c3838a37d983ac100573f64c1f3fd8e1eb6c89fa5f9529b5ec091d 9 | -------------------------------------------------------------------------------- /app/src/test/java/me/dbarnett/acastus/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package name.gdr.acastus_photon; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- 1 | #16 You can start Acastus by clicking on an addresss in SimpleContatcs 2 | to translate and viw a postal address in a map without invoking google. 3 | 4 | Implemented internet map services translation from 5 | google-maps, openstreetmap, yandex, here to a geo-uri. 6 | 7 | Thankyou to "QWERT (lurenjia01)" for new Chinese Simplified (zh-CN) translation 8 | Thankyou to "cimbrum" for new Romanian (ro) translation 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/androidTest/java/me/dbarnett/acastus/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package name.gdr.acastus_photon; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/Makefile: -------------------------------------------------------------------------------- 1 | all: dist 2 | 3 | dist: 4 | tangram-bundle tron-style.yaml 5 | mv tron-style.zip dist/tron-style.zip 6 | 7 | tangram-bundle tron-style-more-labels.yaml 8 | mv tron-style-more-labels.zip dist/tron-style-more-labels.zip 9 | 10 | tangram-bundle tron-style-no-labels.yaml 11 | mv tron-style-no-labels.zip dist/tron-style-no-labels.zip 12 | 13 | clean: 14 | rm -rf dist 15 | mkdir dist 16 | 17 | tag: 18 | git tag -m 'See CHANGELOG for details.' -a v`cat VERSION` 19 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | ✉➡🌍 Acastus Photon 12 | https://photon.komoot.io/api 13 | API Key 14 | 15 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photon übersetzt den Namen einer Straße/Stadt/Sehenswürdigkeit in Geo Koordinaten, die

2 | 6 |

Der Internetdienst "Photon", den Acastus-Photon zum auflösen von Adressen verwendet, 7 | ist eine Alternative zur Google Maps API und anderen Geocoding Diensten, 8 | welche auf einem eigenen Server betrieben werden kann (siehe https://github.com/komoot/photon).

-------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/earth-labels.yaml: -------------------------------------------------------------------------------- 1 | layers: 2 | # tuck this into existing earth layer 3 | earth: 4 | earth-labels: 5 | filter: { name: true } 6 | island: 7 | filter: { kind: [archipelago, island, islet] } 8 | draw: 9 | text: 10 | visible: global.text_visible_island 11 | text_wrap: 10 12 | font: 13 | family: Orbitron 14 | size: [[10,12px],[16,16px]] 15 | fill: [0.594,0.990,0.944] 16 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photon transforma o nome da rua/cidade/ponto de interesse 2 | para geo-coordenação que pode ser

3 | 7 |

O Photon-Server-Software que Acastus-Photon chama pela internet 8 | é um substituto para o Google Maps e outros serviços de geocodificação que você 9 | pode executar no seu próprio servidor.

10 |

Detalhes sobre a criação da sua própria instância de Photon estão aqui: https://github.com/komoot/photon 11 | .

-------------------------------------------------------------------------------- /app/src/main/res/xml/pref_headers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
9 | 10 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photo překládá jména ulic/měst, nebo bodů zájmu na geo-souřadnice, které poté lze

2 |
    3 |
  • otevřít v mapách, nebo navigační aplikaci, například v OsmAnd, Maps.me, APhotoManager.
  • 4 |
  • sdílet s ostatními lidmi
  • 5 |
6 |

Můžete zapnout Acastus kliknutím na libovolnou adresu v Android aplikaci pro kontakty (SimpleContacts).

7 |

Photon-Server-Software, jež Acastus-Photon kontaktuje přes internet je náhradou za Google Mapy a další geokódové služby, které můžete provozovat na svém vlastním serveru.

8 |

Detaily, týkající se nastavení vaší vlastní instance najdete zde: https://github.com/komoot/photon.

-------------------------------------------------------------------------------- /app/src/debug/res/values-zh-rCN/fdroid.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | 导航应用的在线地址/POI 搜索 19 | 20 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photon translates name of street/city/point-of-interest 2 | to geo-coordinate which can be

3 |
    4 |
  • opened in a map or navigation app such as OsmAnd, Maps.me, APhotoManager.
  • 5 |
  • shared with other people via the send command.
  • 6 |
7 |

You can start Acastus by clicking on an addresss in the Android Contacts app (SimpleContatcs).

8 |

The Photon-Server-Software which Acastus-Photon calls over the internet 9 | is a replacement for Google Maps and other geocoding services that you 10 | can run on your own server.

11 |

Details on setting up your own Photon instance are here: https://github.com/komoot/photon 12 | .

-------------------------------------------------------------------------------- /app/src/debug/res/values-tr/fdroid.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | Navigasyon uygulamaları için çevrimiçi adres/POI arama 19 | 20 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/daniel/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/debug/res/values-es/fdroid.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | Una búsqueda online de direcciones/POI para aplicaciones de navegación 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 20 | 21 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photon traduce il nome di strade/città/punti d'interesse 2 | in coordinate geografiche che possono essere

3 |
    4 |
  • aperte in una mappa o un applicazione di navigazione come OsmAnd, Maps.me, APhotoManager.
  • 5 |
  • condivise con altre persone tramite il comando d'invio.
  • 6 |
7 |

È possibile avviare Acastus cliccando su un indirizzo nell'applicazione Contatti di Android (SimpleContatcs).

8 |

Il Photon-Server-Software che Acastus-Photon chiama su internet 9 | è un sostituto di Google Maps e di altri servizi di geo codifica che 10 | può eseguire sul tuo server.

11 |

I dettagli per la configurazione della tua istanza di Photon sono qui: https://github.com/komoot/photon 12 | .

-------------------------------------------------------------------------------- /styles/tron-style-4.0.0/styles/common.yaml: -------------------------------------------------------------------------------- 1 | import: 2 | - ../blocks/functions/zoom.yaml 3 | - ../blocks/functions/pulse.yaml 4 | - ../blocks/geometry/dynamic-width.yaml 5 | - ../blocks/geometry/dynamic-height.yaml 6 | 7 | styles: 8 | tron-palette: 9 | shaders: 10 | blocks: 11 | global: | 12 | vec3 palette(in float x) { 13 | return mix(vec3(0.000,1.000,1.), 14 | vec3(1.,0.,0.), 15 | vec3(smoothstep(0.0,1.048, x), 16 | sin(x*2.806), 17 | smoothstep(-0.512,1.072,x)))*(1.0-sin(-0.196+x*3.950)*0.380); 18 | } 19 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus-Photon traduit le nom de la rue/ville/point d'intérêt 2 | à la géo-coordination qui peut être

3 |
    4 |
  • ouvert dans une carte ou une application de navigation telle que OsmAnd, Maps.me, APhotoManager.
  • 5 |
  • partagé avec d'autres personnes via la commande d'envoi.
  • 6 |
7 |

You can start Acastus by clicking on an adresss in the Android Contacts app (SimpleContatcs).

8 |

Le logiciel Photon-Server-Software qu'Acastus-Photon appelle sur Internet 9 | remplace Google Maps et d'autres services de géocodage que vous 10 | peut fonctionner sur votre propre serveur.

11 |

Les détails sur la mise en place de votre propre instance Photon se trouvent ici : https://github.com/komoot/photon 12 | .

-------------------------------------------------------------------------------- /fastlane/metadata/android/pl/full_description.txt: -------------------------------------------------------------------------------- 1 |

Acastus Photon tłumaczy ulicę/miasto/nazwę lokalu na współrzędne 2 | geograficzne, które potem mogą być:

3 |
    4 |
  • otwarte w mapie aplikacji do map lub nawigacji takiej, jak OsmAnd, Maps.me, APhotoManager
  • 5 |
  • udostępnione innym osobom za pomocą opcji Udostępnij
  • 6 |
7 |

You can start Acastus by clicking on an adresss in the Android Contacts app (SimpleContatcs).

8 |

Oprogramowanie serwerowe Photon, z którym Acastus Photon łączy się  9 | przez internet, jest otwartym zamiennikiem serwisów geokodowania takich, 10 | jak Google Maps, i można uruchomić je na własnym serwerze.

11 |

Szczegóły odnośnie uruchomienia własnego serwera Photon znajduą się 12 | pod adresem https://github.com/komoot/photon

-------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- 1 | name: Android CI 2 | 3 | on: 4 | push: 5 | branches: [ '*' ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: set up JDK 11 17 | uses: actions/setup-java@v2 18 | with: 19 | java-version: '11' 20 | distribution: 'adopt' 21 | cache: gradle 22 | 23 | - name: Grant execute permission for gradlew 24 | run: chmod +x gradlew 25 | - name: Build with Gradle 26 | run: ./gradlew build 27 | - name: Upload Debug APK 28 | uses: actions/upload-artifact@v2 29 | with: 30 | name: app-debug 31 | path: app/build/outputs/apk/debug/app-debug.apk 32 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | android.enableJetifier=true 20 | android.useAndroidX=true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # travis build for #toGoZip (https://github.com/k3b/ToGoZip/) 2 | language: android 3 | 4 | jdk: 5 | - oraclejdk8 6 | 7 | addons: 8 | apt: 9 | packages: 10 | # graphviz to render javadoc uml 11 | # https://docs.travis-ci.com/user/multi-os/ 12 | - graphviz 13 | 14 | android: 15 | components: 16 | # https://github.com/travis-ci/travis-ci/issues/5036 17 | - tools 18 | 19 | # values in gradle.properties and .travis must be the same 20 | # - build-tools-24.0.2 21 | - build-tools-29.0.3 22 | - android-29 23 | 24 | - add-on 25 | - extra 26 | 27 | before_install: 28 | # http://stackoverflow.com/questions/33820638/travis-yml-gradlew-permission-denied 29 | # must execute 30 | # git update-index --chmod=+x gradlew 31 | # instead of 32 | # - chmod +x gradlew 33 | # 34 | # https://stackoverflow.com/questions/52274229/travis-ci-android-28-licenses-have-not-been-accepted 35 | # - yes | sdkmanager "platforms;android-28" 36 | 37 | 38 | script: 39 | - jdk_switcher use oraclejdk8 40 | - ./gradlew assemble 41 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/layers/earth.yaml: -------------------------------------------------------------------------------- 1 | layers: 2 | earth: 3 | data: { source: mapzen } 4 | draw: 5 | polygons: 6 | order: global.order 7 | color: [0.267,0.365,0.502] 8 | early: 9 | filter: { $zoom: { max: 7 } } 10 | draw: 11 | polygons: 12 | style: earth-early 13 | later: 14 | filter: { $zoom: { min: 7 } } 15 | draw: 16 | polygons: 17 | style: polygons 18 | color: [[7,[0.242,0.332,0.456]],[8,[0.212,0.302,0.431]]] 19 | 20 | styles: 21 | earth-early: 22 | base: polygons 23 | mix: [functions-zoom, polygons-diagonal-opaque-stripes] 24 | shaders: 25 | defines: 26 | ZOOM_START: 0. 27 | ZOOM_END: 6.5 28 | ZOOM_MAX: 6. 29 | 30 | STRIPES_ALPHA: 1. 31 | STRIPES_SCALE: mix(25.,50.,smoothstep(0.,1.,1.-zoom())) 32 | STRIPES_WIDTH: 1.-zoom()-.2 33 | -------------------------------------------------------------------------------- /metadata/name.gdr.acastus_photon.yml: -------------------------------------------------------------------------------- 1 | Categories: 2 | - Navigation 3 | License: LGPL-3.0-only 4 | SourceCode: https://github.com/gjedeer/Acastus 5 | IssueTracker: https://github.com/gjedeer/Acastus/issues 6 | 7 | AutoName: Acastus Photon 8 | Summary: An online address/POI search for navigation apps 9 | Description: |- 10 | A private, free and open source replacement for Google Maps 11 | and other geocoding services that relies on Photon, which you 12 | can run on your own server. It uses the Photon API to fetch results 13 | to your phone, allowing you to search for places in Acastus Photon. 14 | Then open and navigate to the result in your preferred navigation app, 15 | such as OsmAnd or Maps.me. 16 | 17 | This is a fork of Acastus by DanielBarnett714, which used the Pelias API. 18 | 19 | RepoType: git 20 | Repo: https://github.com/gjedeer/Acastus 21 | 22 | Builds: 23 | - versionName: '1.14' 24 | versionCode: 16 25 | commit: 1.14 26 | subdir: app 27 | gradle: 28 | - yes 29 | 30 | AutoUpdateMode: Version %v 31 | UpdateCheckMode: Tags 32 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2016 Mapzen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /styles/cinnabar-style-gh-pages/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Mapzen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /styles/tron-style-4.0.0/components/fonts.yaml: -------------------------------------------------------------------------------- 1 | # Fonts 2 | fonts: 3 | Aldrich: 4 | - weight: normal # Regular 5 | # url: https://fonts.gstatic.com/s/aldrich/v6/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff 6 | url: fonts/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff 7 | Audiowide: 8 | - weight: normal # Regular 9 | # url: https://fonts.gstatic.com/s/audiowide/v4/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff 10 | url: fonts/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff 11 | Cairo: 12 | - weight: normal # Regular 13 | # url: https://fonts.gstatic.com/s/cairo/v1/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff 14 | url: fonts/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff 15 | Orbitron: 16 | - weight: normal # Regular 17 | # url: https://fonts.gstatic.com/s/orbitron/v7/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff 18 | url: fonts/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff 19 | Play: 20 | - weight: normal # Regular 21 | # url: https://fonts.gstatic.com/s/play/v7/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff 22 | url: fonts/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_general.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | 20 | 21 | 22 | 27 | 28 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 17 | 18 | 22 | 23 | 27 | 28 |