🍃 Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists. It uses crowd-sourced OpenStreetMap data and is developed with love by MapsWithMe (MapsMe) founders and our community. No ads, no tracking, no data collection, no crapware. Please donate to support the development!
First could answer the question what is the update frequency.
To do so can write down when I notice such an update. Is last update retrievable from Settings? Yes in OpenStreetMap profile:
Cartographic data from OpenStreetMap as of 12/13/23.
grep -ri 'Cartographic data from OpenStreetMap as of'
android/app/src/main/res/values/strings.xml: <string name="osm_presentation">Cartographic data from OpenStreetMap as of %s. OSM is like Wikipedia for maps, where you can add and edit places for users around the world.</string>
data/strings/strings.txt: en = Cartographic data from OpenStreetMap as of %@. OSM is like Wikipedia for maps, where you can add and edit
android/app/src/main/java/app/organicmaps/car/screens/settings/HelpScreen.java: .addText(DateUtils.getShortDateFormatter().format(Framework.getDataVersion()))
android/app/src/main/java/app/organicmaps/editor/OsmLoginFragment.java: final String dataVersion = DateUtils.getShortDateFormatter().format(Framework.getDataVersion());
android/app/src/main/java/app/organicmaps/Framework.java: public static Date getDataVersion()
android/app/src/main/java/app/organicmaps/help/HelpFragment.java: final String dataVersion = DateUtils.getShortDateFormatter().format(Framework.getDataVersion());
The latest .apk from F-Droid seems to have been published on 2023.09.22 which contradicts previous statement but confirm the memory that we can update the OpenStreetMap data from OrganicMaps itself. The question is to what nativenativeGetDataVersion resolves to?
+4
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. For example:
I'm always frustrated when [...]
Describe the ideal solution
A clear and concise description of what you want to see in Organic Maps.
Describe alternatives you have considered
How do you solve this issue now with Organic Maps or other apps?
Attach any examples, screenshots, or screen recordings from other apps that help us to better understand the idea.
Additional context
Add any other context or screenshots about the feature request here.
First could answer the question what is the update frequency. To do so can write down when I notice such an update. Is last update retrievable from
Settings
? Yes inOpenStreetMap profile
:Source: https://github.com/Benjamin-Loison/organicmaps/blob/4ff5fbcd2b204286e39c1d8fa4eaaa14eb88ba5b/android/app/src/main/java/app/organicmaps/editor/OsmLoginFragment.java#L58
https://github.com/Benjamin-Loison/organicmaps/blob/4ff5fbcd2b204286e39c1d8fa4eaaa14eb88ba5b/android/app/src/main/java/app/organicmaps/Framework.java#L216-L228
The Stack Overflow answer 30635871 seems to indicate that it is possibly related to the OrganicMaps
.apk
version itself?https://f-droid.org/en/packages/app.organicmaps/#latest
The latest
.apk
from F-Droid seems to have been published on 2023.09.22 which contradicts previous statement but confirm the memory that we can update the OpenStreetMap data from OrganicMaps itself. The question is to whatnative
nativeGetDataVersion
resolves to?+4
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. For example: I'm always frustrated when [...]
Describe the ideal solution A clear and concise description of what you want to see in Organic Maps.
Describe alternatives you have considered
Additional context Add any other context or screenshots about the feature request here.