Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dimmel

#1
Troubles & Questions / Re: Online map download
July 14, 2014, 16:22:06
Quote from: menion on July 14, 2014, 13:09:35
dimmel, check settings directly in maps screen. There is "Visible tabs" settings with possibility to show/hide certain tabs.

That was the problem. Now it's working fine.
#2
Troubles & Questions / Re: Online map download
July 14, 2014, 05:47:46
Thanks got it. For some reason the online tab is not visible on my Galaxy S2 (but it shows on another phone).
#3
Troubles & Questions / Online map download
July 13, 2014, 15:53:34
Hi,

In a (very) old version of Locus I could download online maps for offline usage. Has this functionality been removed from Locus Maps? If not, where can I find it?

Greetings,
#4
Some more research revealed that it is not possible to filter by attribute as I need it because only "|" (concat) is supported: http://code.google.com/p/mapsforge/wiki/RenderThemeAPI

But I can show all drinking water POIs using this:
<rule e="node" k="drinking_water" v="yes" zoom-min="14" zoom-max="20">

Better would be support for an "AND" operator (not working) [1]:


<rule e="node" k="natural" v="spring" zoom-min="14" zoom-max="20">
  <rule e="node" k="drinking_water" v="yes" zoom-min="14" zoom-max="20" />
</rule>

I will file this as a feature request to mapsforge people.

[1] http://wiki.openstreetmap.org/wiki/Osma ... .3Crule.3E
#5
Hi,

I am using these vector maps here which work great: viewtopic.php?f=40&t=2066
One thing I am interested in are drinking water locations for outdoor activities. Christian's template already includes the "drinking_water" amenity. But there are also other sources for drinking water: "natural"+"spring" and "amenity"+"fountain". These can have the attribute "drinking_water" as well.

Is it possible to show only "springs" and fountains which have the attribute "drinking_water"?
The xml code for a spring looks like this at the moment:
<rule e="node" k="natural" v="spring" zoom-min="14" zoom-max="20">
 <symbol src="file:/symbols/spring_32.png" />
</rule>

Regards,