├── readme.md └── .github └── workflows └── release.yml /readme.md: -------------------------------------------------------------------------------- 1 | **目前在对地图渲染和 UI 做一些小范围重构,预计年后开源维护,欢迎 issues 讨论,不过精力有限功能会做得比较慢。** 2 | 3 | 使用 flutter 实现,极致流畅的原神地图 app,可以离线使用,支持 android、web、linux、windows、macos。为了提供最佳的用户体验,从手势识别到资源加载、地图绘制都是独立实现的。 4 | 5 | ## TODO 6 | 7 | - [ ] 重构地下地图,支持分层 8 | - [ ] 支持多国语言(开发中) 9 | - [ ] 搜索功能 10 | - [x] 标记功能 11 | 12 | ## android 版 13 | 14 | 下载地址:https://qiuxiang.github.io/genshin-maps/app-arm64-v8a-release.apk 15 | 16 | https://user-images.githubusercontent.com/1709072/231053551-84fde3e3-13d5-45e9-9d4f-60c8ad33f2e1.mp4 17 | 18 | ## web 版 19 | 20 | 体验地址: 21 | 22 | https://qiuxiang.github.io/genshin-maps/ 23 | 24 | http://106.55.55.247:81/ (国内的服务器,不保证可用性) 25 | 26 | ## linux 版 27 | 28 | 下载地址:https://github.com/qiuxiang/genshin-maps/archive/refs/heads/linux.zip 29 | 30 | ## windows 版 31 | 32 | 下载地址:https://github.com/qiuxiang/genshin-maps/archive/refs/heads/windows.zip 33 | 34 | ## macos 版 35 | 36 | 下载地址:https://github.com/qiuxiang/genshin-maps/archive/refs/heads/macos.zip 37 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: release 2 | on: 3 | push: 4 | tags: ['v[0-9]+.[0-9]+.[0-9]+*'] 5 | jobs: 6 | release: 7 | permissions: 8 | contents: write 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v3 12 | - name: Download builds 13 | run: | 14 | wget https://github.com/qiuxiang/genshin-maps/archive/refs/heads/linux.zip 15 | wget https://github.com/qiuxiang/genshin-maps/archive/refs/heads/windows.zip 16 | wget https://github.com/qiuxiang/genshin-maps/archive/refs/heads/macos.zip 17 | wget https://github.com/qiuxiang/genshin-maps/raw/web/app-arm64-v8a-release.apk 18 | wget https://github.com/qiuxiang/genshin-maps/raw/web/app-armeabi-v7a-release.apk 19 | wget https://github.com/qiuxiang/genshin-maps/raw/web/app-x86_64-release.apk 20 | - uses: softprops/action-gh-release@v1 21 | with: 22 | files: | 23 | app-*-release.apk 24 | linux.zip 25 | windows.zip 26 | macos.zip 27 | --------------------------------------------------------------------------------