[APP] - version 2.17.X+ (updated 28.12.2013)

Started by Menion, October 30, 2013, 13:56:32

0 Members and 2 Guests are viewing this topic.

joeloc

Quote from: menion on November 18, 2013, 18:32:04
any new problem? :)

No... but mountains would be good for you. And also good for Locus altitude features in general, which currently suffer from their creator living in a flat-as-a-pancake place. :)
  •  

Menion

Quote from: balloni55 on November 18, 2013, 18:52:04
Quotehow is it possible that you see smiley as icon and also star for "computed"?
you misunderstood, i wrote
Quotewhen i mark it as "computed" the icon get a crown and no red star.
The smiley get a crown after i marked it as computed.



ah I see it now. Hmm as I wrote in any post before, system for drawing a geocache icons is little bit weird and complicated now. It needs to be rewrote, but because it's little bit risky, I'll leave it to next bigger version, when will be enough time to test all possibilities.
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

john_percy

Car Parking nodes no longer appear with internal themes
In http://forum.locusmap.eu/index.php?topic=3423.msg24409#msg24409 I commented that the standard Osmarender includes rules that say there must be either no access key, or access must be yes or public for the parking icon to show and Voldapet changed the internal themes accordingly.
However parking nodes no longer appear in the Locus internal themes (though areas/ways do). It appears that the test for no "access" key in the following code does not work for nodes, though the equivalent code does work for ways.
<rule e="node" k="amenity" v="parking">
<rule e="node" k="access" v="~">
<symbol src="file:/symbols/parking.png" />
</rule>
<rule e="node" k="access" v="yes|public">
<symbol src="file:/symbols/parking.png" />
</rule>
</rule>

I don't know if this is a bug in the Locus code or implicit in the data but in fact the dummy code from OpenStreetMap at https://trac.openstreetmap.org/changeset/6939/subversion does not test for access permissions in parking nodes.
Voluntary and Velocity themes - https://voluntary.nichesite.org
  •  

jurek77

#168
Hello Menion.
In Android 4.4 (KitKat) on Nexus 7 2013 (version 2.17.3),  menu settings (Display to Miscellaneous) is not working. White screen.
In version 2.17.1.3 menu settings is working ok, on Android 4.4.
  •  

Menion

@percy: I'll forward this issue to peter

@jurek: I know, sorry. Interesting issue, caused by one change in Android system. "Funny" on this is fact, that I was fixing it right before release, tested it, but it's still in public version. Probably some part of precompiled code remained in memory during creating a version. We now discuss, if release another version (2.17.x is really cursed) immediately or wait at least a week ...
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

balloni55

#170
Hello  menion
the behavior discribed in replay#113 and #116 always exist.
kml export to dropbox is only possible when you select "sdcard" and "send data", so you export it twice :-[
Direct export to dropbox is always kmz
LMC 3.70.0 AFA
Locus Map 4.22.2.1 Gold AFA
LMC User ID c8b19276f
LM4 User ID e06d572d4
  •  

Menion

balloni, I already few times wrote that this is not a bug, but an intent. For example here http://forum.locusmap.eu/index.php?topic=3488.msg24751#msg24751 . I'm sure this is not a big problem
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

balloni55

Sorry menion, i didnt noticed :-[, you are right it is not a  big problem
LMC 3.70.0 AFA
Locus Map 4.22.2.1 Gold AFA
LMC User ID c8b19276f
LM4 User ID e06d572d4
  •  

Bob Denny

@menion -- on #168 (blank settings pages), I noticed that while displaying the satellites, from that menu if you open GPS and Location settings, they show fine! But doing it from the main "gear" Settings icon, all settings pages are blank. It is strange.
  •  

joeloc

I am playing with WMS for the first time and it seems kind of unusable at the moment. Using any of the maps from
http://www.igac.gov.co/wps/portal/igac/raiz/iniciohome/MapasdeColombia/Descargas
eg
http://geocarto.igac.gov.co/geoservicios/cien_mil/wms
makes Locus crawl like a snail and almost always busyloop one core (galaxy note 2). Is this to be expected with WMS? I thought it was basically just tile downloading, so the performance should be more or less equal to other online maps, but maybe I am mistaken.

I also just had Locus crash after playing with those maps for a few minutes.
  •  

Menion

@bob: weird, but it make sense for me. Version will be out during a weekend, sorry for troubles

@joeloc: no no, wms maps are in 90% much slower then normal online maps. Tiles are not stored on WMS servers, but are generated on-the-fly based on Locus requests. They are also not cached, so every tile is requested again when needed
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

joeloc

Quote from: menion on November 26, 2013, 09:56:04
@joeloc: no no, wms maps are in 90% much slower then normal online maps. Tiles are not stored on WMS servers, but are generated on-the-fly based on Locus requests. They are also not cached, so every tile is requested again when needed

Ok, but that doesnt explain Locus eating all CPU and busylooping a core and scroll with 1 fps while WMS overlays are active. I think I even had it busyloop when I was inside the map manager on the WMS tab.
  •  

Menion

ah got it, nice. Problem is simple. Every WMS server return XML file with it's information, paremeters etc. Locus keep this definition and read it every time, you need to work with WMS layer. Usually, these XML files are around 10 - 30kb big, so parsing took less then second. Unfortunately I discovered that XML file from server you mention, has more then 200kb! and even on Nexus7, it took almost 5 seconds to parse it.

It's not too important problem now, but I'm placing it to my TODO list to any of next versions, because it definitely needs to be fixed. Thanks
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

joeloc

Quote from: menion on November 27, 2013, 10:39:29
It's not too important problem now, but I'm placing it to my TODO list to any of next versions, because it definitely needs to be fixed. Thanks
Looking forward to Locus 2.18.1 :-)
  •  

Menion

we are just uploading new version on Google Play. I wanted to have a month without any version, but problem on A4.4 with settings, forced me to update. So there is a few minor changes and also a public version of "Generator of navigation" for plain tracks. Texts in this feature are not available for translation, because I hope you suggest me better once :)

Hope all main features will works on 100%, less importat in worst case on 99%

enjoy Locus and a coming weekend
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •