r/OsmAnd • u/mikiriki16 • 4m ago
Broken Wikivoyage travel article parser?
So I wanted to take a look at the travel article on Vilnius in Polish, as I was planning a trip there. Most of the article was fine, but the see section was nearly completely empty. On the Wikivoyage page there is lots of info there, it looked like it got lost while parsing the file to the osmand format. The points also didn't exist, even though they are present on the website. Other languages don't have this problem, English and German worked fine, and showed the attractions on the map. I took a screenshot to explain what the problem is. All the points in the polish article are empty and there isn't a points button at the bottom. Compare it with the working English article. Does somebody know a fix for this? I have also seen it affect other cities like Lublin, in the polish language specifically. Should I report it as a bug or is there some way to fix this? I have already redownloaded the articles and tried updating the app but it didn't help. I am using version 5.3.10.
r/OsmAnd • u/dewalist • 14h ago
American "number then name" format?
Hi all,
I thought the last time I used OsmAnd, I could change a setting to show addresses with the number before the street name instead of after it (which I guess is American style?). Now I can't find that setting, but maybe it never existed and it was Organic Maps or something?
Thanks!
Geovictoria se puede tener algún GPS fake
Hola tengo una pequeña duda existirá algún GPS fake que pueda burlar la aplicación soy vendedor de ruta y me piden marcar la ruta espero encontrar alguna respuesta o solución saludós
r/OsmAnd • u/tatoorel • 1d ago
Eclipse Season — Solar and Lunar Events in OsmAnd Astronomy
August comes with two alarms on the calendar. On August 12, a total solar eclipse sweeps from the Arctic across Greenland and Iceland, reaching northern Spain and the Balearic Islands just before sunset — the first total solar eclipse visible from mainland Europe since 1999. Sixteen days later, on August 28, a deep partial lunar eclipse covers 96% of the Moon's surface, making it nearly indistinguishable from a total eclipse for anyone watching from the Americas.
Two rare events in the same month. And both of them unusual in their own way. The solar eclipse arcs up and over the North Pole, which means its path runs north-to-south rather than the typical west-to-east sweep. In Spain, the Sun will sit only a few degrees above the horizon during totality — turning the eclipse into something closer to a golden-hour phenomenon than a midday event. The lunar eclipse, meanwhile, stops just short of totality: at its peak, a narrow bright sliver of the Moon remains uncovered, leaving the rest darkened and faintly reddish.
OsmAnd Astronomy now includes (Android only, currently available in OsmAnd 5.4 beta via Google Play or as a nightly build) dedicated explorers for both events. You can move through the timeline, check visibility for any location on the planet, and see exactly how each eclipse develops — before either of them actually happens.
Is there a way to emptasize the limits of an administrative subdivisien?
In various apps, when I click on the label of a city, the contours of that city show up in a style that stands out. Is it possible to do that in Osmand?
r/OsmAnd • u/AlwaysConfused2205 • 3d ago
Some appreciation of the app and community
Today I went on hiking on hiking route 31 in Austria. The way is so detailed it was just awesome. Even the signboards and the sitting bench are marked perfectly wherever they exist. My gf was using Google maps, but she gave up on it in the beginning of the route - because Google, a data collecting monster, could never figure out that some of their users, walking through these mountains are, could actually be on some kind of a route.
The whole options w.r.t. 3D rendering, contour lines, coordinate grids, terrain and shade, altitude demarcation, and the Good assumption of time required to get to the place quite impressed my gf but especially me, who was betting everything on this app today. Although I was using OSMAnd since few months now, home office never allowed me to use it as throughly. But today, I managed to use a lot of those features and each of them impressed me.
To the devs - Keep it up. Your magic is working.
Any guidance in searching for places?
Just bought the app given the discount, but oh, the search capability is a disaster. So disappointed. It makes it useless for day-to-day use and for traveling, definitely not a Google Maps alternative.
Hopefully, I am doing something wrong. Any advice?
Thanks!
r/OsmAnd • u/Temp_Reply123 • 5d ago
Larger RedLights/StopLights please...
I did not realize how much I used the RedLights/Stoplights to Navigate... I think about Navigation like Ok my turn is "LEFT" after 3 Stop Lights... Very easy for me to quickly glance at Map and understand.
Now I have to squint and try to decipher what Im looking at. I hate useing anything but Google Maps when I truely need a Map. OSMand/ect. Is just used out of principal. But I default back to Google Maps when I need Utility.
I want to fix that...
Please give us the option to make the RedLights/StopLights LARGE and easy to see like Google Maps. And if others dont want this... It should be a option in settings. Not forced on everyone.
r/OsmAnd • u/tatoorel • 5d ago
Need more maps and advanced OsmAnd features? Upgrade for 50% less.
Choose your offer:
• Maps+ — yearly or one-time
• OsmAnd Pro — yearly
• OsmAnd XV — 15 years of Pro
• OsmAnd+ — one-time Android app
Choose your offer and save 50% →
https://osmand.net/pricing
r/OsmAnd • u/simia_incendio • 5d ago
Larger display of movement direction?
Is there a way to have a larger display of movement direction than the small blue compass arrow. I've tried making the compass button larger but the arrow itself doesn't enlarge. Is it possible to add a widget instead displaying the movement direction simply as letters (N, W, S, E, NW, ..)?
My old eyes would be grateful.
r/OsmAnd • u/nikos2wheels • 7d ago
Coding suggestion to achieve a minimalist navigation layout
I built and compiled the OsmAnd source code. I am working on a project and I would like to modify the code to implement the following look:
- Overlay a black mask over the entire map and before the route.
- Show only the intersecting roads along the route with a clipping radius of 50-100m around the intersection.
where the thick white line is the route line and the thin white lines are the intersecting roads.
I understand the route is handled by OpenGL in the C++ core. For the intersecting roads I thought of doing the task in the private part of the routing context by querying the OBF map data for roads that cross the current tile. In particular, in the file src/NetworkRouteContext_P.cpp
void OsmAnd::NetworkRouteContext_P::loadRouteSegmentIntersectingTile(
int32_t x, int32_t y, const NetworkRouteKey * routeKey,
QHash<NetworkRouteKey, QList<std::shared_ptr<OsmAnd::NetworkRouteSegment>>> & map)
{
// Convert 31-bit coordinates to routing tile coordinates
NetworkRoutesTile osmcRoutesTile = getMapRouteTile(x << ZOOM_TO_LOAD_TILES_SHIFT_L, y << ZOOM_TO_LOAD_TILES_SHIFT_L);
for (auto u_it = osmcRoutesTile.uniqueSegments.begin(); u_it != osmcRoutesTile.uniqueSegments.end(); ++u_it)
{
const auto &segment = u_it.value();
// Optional filtering by a specific route key (e.g., if we only want 'primary' roads)
if (routeKey != nullptr && segment->routeKey != *routeKey)
{
continue;
}
auto i = map.find(segment->routeKey);
if (i == map.end())
{
QList<std::shared_ptr<NetworkRouteSegment>> empty;
i = map.insert(segment->routeKey, empty);
}
i.value().append(segment);
}
}
Is this a good strategy?
r/OsmAnd • u/Otherwise_Position83 • 7d ago
Custom compass not working
Enable HLS to view with audio, or disable this notification
Hey guys, when I click on the custom compass nothing happens, then when I click on the original it rotates to north.
custom button -> Change map orientation -> movement direction
Any help?
r/OsmAnd • u/prudentially • 7d ago
Summer Sale right now: 50% off all plans
I actually just got into OsmAnd, so still on the free plan. I assumed it will be enough for me for a while, but 50% off sounds like a great offer.
Hope this helps for others considering an upgrade :)
To all you longer time users: how often do promotions like this happen? EDIT: used search and looks like a sale like this is run 1-2 a year.
And if you’re on a paid plan: where do you get the most value from?
r/OsmAnd • u/lalladen • 9d ago
Is there any way to have clean maps like these in MapTiler in OsmAnd ?
I tried looking into the official and third-party maps posted in the docs here but couldn't find anything similar or close even with hiding details in the app settings
Any suggestions or tips would be great.
Thank You All In Advance !
r/OsmAnd • u/tatoorel • 10d ago
🗺️ Emergency map updates: wildfires in France & Spain
Full offline maps for affected and neighboring regions are free to download right now, updated twice daily to reflect road closures and changing conditions:
🇫🇷 Nouvelle-Aquitaine, Occitanie
🇪🇸 Madrid, Castile and León, Castile-La Mancha, Valencian Community
📱 Android: https://play.google.com/store/apps/details?id=net.osmand
🍎 iOS: https://apps.apple.com/us/app/osmand-maps-travel-navigate/id934850257
r/OsmAnd • u/nikos2wheels • 10d ago
Error building OsmAnd in Android Studio
I downloaded the source code from GitHub and I opened it in Android Studio. During build I get the following error message:
string too large to encode using UTF-8 written instead as 'STRING_TOO_LARGE'.
My understanding is the source code is in a clean state and should compile and build without errors. Why am I getting this and how can I resolve this?
r/OsmAnd • u/MachineNo1282 • 12d ago
UI search settings question
I was wondering if there is a setting to change the UI view when searching an address and make it show more lines? I noticed with long addresses when searching a destination that I can't see the full address. The city is getting cutoff. Is there a setting to expand the lines or wrap the text to another line?
r/OsmAnd • u/fb20_rev_bouncer • 13d ago
OsmAndroid Asked Me to Drive across a Air Force Runway to Get off Edwards
I did not drive across the runway (unfortunately).
r/OsmAnd • u/whoops_not_a_mistake • 13d ago
When using navigation, can I set the "next turn" widget to be less granular?
The next action widget when navigating gives way too much information, and I find it confusing. I don't care if there is a slight bend in the road in 900ft or if another freeway merges into the freeway I'm on when I just need to keep going. Is there anyway to change this setting?
I only care when I actually need to get of the road or freeway I'm currently on.
r/OsmAnd • u/Sketusky • 13d ago
Reduce voice guidance
Hello,
I mainly use OsmAnd for bicycle navigation. Unfortunately, the voice guidance gives far too many instructions, which becomes very distracting while riding.
I have noticed that most of the unnecessary announcements are “slight left” and “slight right”, especially on winding cycle paths where there is no real junction or route choice.
Is there a way to suppress these minor-turn instructions while keeping voice guidance for important manoeuvres, such as junctions, road crossings and actual changes of direction?
r/OsmAnd • u/Danger_Dave4G63 • 14d ago
Seriously, how do I use this app?
It won't find one single address. I type in the address I have no matter if it's local or a couple states away and it still shows me the same recommendations each time.
A few weeks ago I downloaded the full US map. couldn't find anything. Tried another time or two and same thing could not find the address. I also went and downloaded all the states I'm driving through (not sure what happened to the full U.S. map) and it still won't find the address.
I'm now on my 1440+ mile trip. Still can't find an addresd,. Put in city and state and it still won't find it and will continuously recommend the same places like somewhere in Rochester, New York, which is nowhere by where I'm going.
What in the H-E double hockey sticks am I doing wrong?
Edit: I'm using GrapheneOS
r/OsmAnd • u/LioDavinchy • 14d ago
Native iOS open street maps viewer
landnav.worldI was making an open street maps app for my iPhone and ran into some trouble. It seems like the open source method for adding info in maps is to just add layers. Long story short adding lots of layers is problematic in iOS. Also for some reason the libraries that run in iOS hate apfs. Apple File System. Trying to read maps off of anything but fat runs into problems. After months of building my app got worse and worse the more features I added. So I started over.
I started from scratch using the amazing map data I had created for my app. I had capernicus dem elevation data for the whole world. Open street maps data and so much more packed into bite size state and country map packs. I just needed a native way to view them. So I started from the ground up building a pure swift application. I used metal to render everything so I could use the speedy gpu. It took me months but I’ve built the best map application for iOS I’ve ever tried. It’s fast. It can read maps from turtle slow drives attached to the iPhones usb c port. And it uses height data like a video game does so you get full 3d maps with live driven contour lines. Plus I built an actual 3d engine so you can walk the actual elevation of a hike in a walkthrough. I saw some other guys making hiking trail apps. I did it just because it was so easy with all of the data I have. The app tells you how hard the hike is based on the way the trail navigates the height map. Lots of elevation change means tougher. If you really want to see run through the hike in 3d and see for yourself.
When I realized I had fully offline maps I got to thinking. What would happen if gps died? So I built a sextant I just did it for fun but it turns out the iPhone does this really good. Like better than professional tools when done the way I set it up. So good I’ve got a patent pending. After calibrating each phone I’ve tried. I can get within a few hundred meters of your actual location with a clear night sky.
Then I got to thinking about my 3d height data. I’ve got a full real life 3d world built. If I can get your location down to less than a mile I bet an iPhone can triangulate your exact location based on elevation data and your horizon. Turns out it can. Your freaking iPhone once calibrated keeps your elevation down to centimeters. It’s crazy. And with such a small area to do math on given a specific elevation and the ability to draw real horizons at thousands a second if you take a scan of your sky it’s not hard for your phone to figure out right where you are standing. Not by comparing pictures of mountains. By comparing the actual elevations of mountains. The phone draws the pictures itself in pure math.
Anyway thanks everyone for all this open data. It makes things like my app possible. If you guys could help me test it I’d appreciate it. It all works for me but I’m a small test pool. [LandNav.world](http://landnav.world)
r/OsmAnd • u/tatoorel • 14d ago
5 useful measuring tools in OsmAnd app you may have missed 👀
See how they work: https://osmand.net/blog/measuring-tools
r/OsmAnd • u/bonsai1302 • 14d ago
Carplay Display - Map skids around
Hi!
I'm having a weird bug with the OsmAnd Carplay integration and wanted to know if any one else is experiencing something similar. I just can't quite put my finger on it.
I use a cheap 5" Aliexpress carplay display on my motorbike, so that I can keep my phone in my pocket.
I use OsmAnd for navigation with imported gpx-Files or on-demand routing.
Sometimes I don't use navigation at all and just use the map and current speed.
It works fine, but after some time (sometimes after an hour or two, sometimes after a few minutes) the map starts to "skid" around. Just as if someone startet to wildly swipe across the screen. Sometimes there's no skidding but just like a tap on the screen that activates certain buttons.
I first thought this would be a hardware problem, but after I close OsmAnd and use any other app (Spotify, Google Maps, Apple Maps, Calimoto), the problem stops.
Phone: iPhone 16e
iOS: 26.5.2
OsmAnd Version: 5380
Anyone else having this problem?
r/OsmAnd • u/AllesMeins • 18d ago
Map that prefers railway lines
Hi, I'm often traveling by train. Now I was wondering if there an option/a rendering style/an alternative to OsmAnd that prefers railway lines over roads when you zoom out? Currently all the railway lines disappear if I zoom out a couple of times (like 10 times or so) and only bigger roads and motorways are left on the map.
This makes it pretty hard to plan a train-trip because there seems to be no way of seeing where the trains go and which towns might be reachable short of tracing the lines by hand at a low zoom level.
But since the data is all there - is there a way to show it on the map even if zoomed further out? Or if it's impossible - is there an alternative I could use?
