hholzgra / maposmatic

Mirror of maposmatic repository at savannah.nongnu.org
GNU Affero General Public License v3.0
72 stars 13 forks source link

Option to turn off all addresses (remove "no address determined") #97

Closed maltfield closed 2 years ago

maltfield commented 2 years ago

Feature request: Please allow the user to select an option to disable all addresses (or lack thereof) from being displayed on the generated map.

Currently when I generate a map from a GPX route, it overlays the text no address determined on the end of the GPX segment. That end is a mountain summit. There is definitely no address there. Nor do I need text overlaying on my trekking map informing me of this 😆

maltfield commented 2 years ago

Update: when I checked my GPX file in a text editor, I see that I have a waypoint defined with a name and description set to no address determined

  <wpt lat="67.2378387" lon="17.2552166">
    <name>No address determined</name>
    <desc>No address determined</desc>
  </wpt>

This GPX file was created in the OSMAnd app, and I did not type No address determined anywhere myself.

maltfield commented 2 years ago

I manually edited the GPX file in my text editor to remove those two lines

So it changed from this

  <wpt lat="67.2378387" lon="17.2552166">
    <name>No address determined</name>
    <desc>No address determined</desc>
  </wpt>

To this

  <wpt lat="67.2378387" lon="17.2552166">
  </wpt>

And now the No address determined has disappeared from the map.

Actually, please don't change anything. I was wondering how I could add POIs to the map, and now I know how :D