Yandex.Maps client for MIDP2-capable devices.
- Geolocation detection
- Map caching
- Search
- Organization cards
- Building a route
- CLDC 1.1
- MIDP 2.0
- JSR-75
- A lot of RAM
- A lot of space in persistent memory
- JSR-179 (optional, for geolocation)
- HTTPS support (optional, for proxy-less operation)
- A patch to allow access to file system without confirmation popups (example for S60)
- On Symbian ^3 and higher: nnproject's J9 patch pack (better GPS, http and RMS)
- On Symbian 9.x / ^3 disable all location sources except unassisted GPS.
- Again, disable A-GPS. On non-symbian devices it may be called as "geolocation server", "internet support", "supplement server" or something like that.
- Let your device perform a cold start: request geolocation in any app (MahoMaps, Google Maps, Ovi Maps, Sports tracker, anything else) and keep the device under clear sky. It is desirable that the horizon is visible. Wait until it catches satellites. May take a while.
- Once you are sure that GPS receiver works okay, it's recommended to enable A-GPS back to increase accuracy and startup time. We recommend using
supl.grapheneos.orgas supplement server.supl.nokia.comis dead! For some peoplesupl.google.comalso works. On S40/S60 devices make sure to bind a correct access point. - If you experience issues, try disabling A-GPS.
- If your device can't catch satellites even in good weather, check that its GPS receiver is operable.
- Symbian ^3/Anna/Belle/Refresh/FP1/FP2
- Symbian 9.2-9.4
- Bada 1.1
There are Eclipse MTJ and KEmulator/IDEA projects, use what you wish.
We have an action which builds the app on git pushes. You can pull latest builds from it, check "checks" section of your pull request or commit info.
Install an SDK for your device, follow its instructions.
dpkg --add-architecture i386
apt update
apt-get install gcc-multilib libxt6:i386
Then install 32-bit JDK 1.6.0 and WTK 2.5.2. Edit build script to use your installed tools (instead of "compiler" repo clone) and run it.
- Create copy of
en.txt/ru.txt, name it with your language's code and translate all strings. - Keep in mind that original language of app was russian (russian is original. Not english).
- You can test how it will look like with replacing english file, for example.
- To make it actually work as one more language, you need to make 3 changes in app's code:
- Go to
Settings.java. InGetUiLangFile()add one more case (with next number) to the switch. Make it return name of your file without.txt. - Startup selection:
MahoMapsApp.java,processFirstLaunch(). Add your language tolangchoice group. Name it in english (Russian, notРусский). - Settings menu:
SettingsScreen.java,ChoiceGroup uiLang. Add your language. Name it as is (Русский, notRussian).
CI on your pull request will attempt to compile the project. If you failed somewhere, it will show that.