https://github.com/vladislavantonyuk/worldexplorer
Explore the globe like never before with World Explorer. Our AI-powered app gives you in-depth insights about any place worldwide, provides a comprehensive description, and recommends local attractions with your personalized travel guide.
https://github.com/vladislavantonyuk/worldexplorer
ai arkit augmented-reality blazor dotnet hacktoberfest maui openai-api ukraine world-explorer
Last synced: 2 months ago
JSON representation
Explore the globe like never before with World Explorer. Our AI-powered app gives you in-depth insights about any place worldwide, provides a comprehensive description, and recommends local attractions with your personalized travel guide.
- Host: GitHub
- URL: https://github.com/vladislavantonyuk/worldexplorer
- Owner: VladislavAntonyuk
- Created: 2023-07-31T21:19:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-04T19:19:13.000Z (6 months ago)
- Last Synced: 2025-05-04T20:28:08.266Z (6 months ago)
- Topics: ai, arkit, augmented-reality, blazor, dotnet, hacktoberfest, maui, openai-api, ukraine, world-explorer
- Language: C#
- Homepage: https://world-explorer.azurewebsites.net
- Size: 146 MB
- Stars: 11
- Watchers: 1
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# WorldExplorer
https://world-explorer.azurewebsites.net/
## Conference
[](https://www.youtube.com/watch?v=sHVlg8Y6qlU)
## Description
Explore the globe like never before with World Explorer. Our AI-powered app gives you in-depth insights about any place worldwide, provides a comprehensive description, and recommends local attractions with your personalized travel guide.
A journey is not just about reaching the destination; it's about the experiences, insights, and memories you create along the way. With the World Explorer app, you can add a personal travel guide to your pocket with a mere tap of a button. Leverage the power of AI to uncover the secrets of any place worldwide. From historic locations to modern sites, World Explorer provides a detailed description of your desired place, shaped by community insights and tailored to your interests. Discover the local cuisine, must-visit spots, cultural attractions, hidden gems, and more with our nearby recommendations feature. Venture into the unexplored and make your journey memorable with World Explorer.
## Development
### MacCatalyst
Run on Device
```bash
dotnet build -t:Run -c Release -f net9.0-maccatalyst -r maccatalyst-arm64
```
### iOS
Run on Emulator iPhone 15 Pro Max
```bash
dotnet build -t:Run -c Release -f net9.0-ios -p:_DeviceName=:v2:udid=7D850AFF-242B-41BC-A9A7-A0818D4CEF30
```
Run on Device
```bash
dotnet build -t:Run -c Release -f net9.0-ios -r ios-arm64 -p:_DeviceName=IDENTIFIER
```
### Android
Generate jks
```bash
keytool -genkey -v -keystore world-explorer.jks -alias world-explorer -keyalg RSA -keysize 2048 -validity 10000
```
Sign aab
```bash
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore world-explorer.jks com.vladislavantonyuk.worldexplorer.aab world-explorer -storepass YOUR_PASSWORD
```