| 1 | [[TranslatedPages(revision=18)]] |
| 2 | |
| 3 | = [[Image(Styles/ShowID:icon.svg,36,middle,inline)]] Εμφάνιση ID = |
| 4 | Αυτό το στυλ προορίζεται για ένα επίπεδο με το αρχείο .osm από το Keypad-Mapper 3. Εμφανίζει τα (θετικά) αναγνωριστικά (ID) των αριθμών σπιτιών. Έτσι μπορείτε να δείτε τη σειρά των κόμβων, όπως τους καταγράψατε. Αυτό μπορεί να σας βοηθήσει στην αντιστοίχιση των σπιτιών, ειδικά αν κάποιοι από τους καταγεγραμμένους αριθμούς είναι συγκεντρωμένοι. Για περισσότερες πληροφορίες σχετικά με τη χρήση αυτού του στυλ, δείτε τη [osmwiki:See_the_tagging_sequence_of_Keypad-Mapper_3_in_JOSM σχετική σελίδα της OSM Wiki]. |
| 5 | |
| 6 | {{{ |
| 7 | #!style type="mapcss" |
| 8 | |
| 9 | meta |
| 10 | { |
| 11 | title: "ShowID"; |
| 12 | version: "1.1.[[revision]]_[[date]]"; |
| 13 | description: "This style is for a layer with the .osm file from Keypad-Mapper 3. It shows the (positive) IDs of the housenumbers. So you can see the sequence of the nodes, how you recorded them. For more information how to use this style see the link."; |
| 14 | icon: "icon.svg"; |
| 15 | author: "Klumbumbus"; |
| 16 | link: "https://josm.openstreetmap.de/wiki/Styles/ShowID"; |
| 17 | } |
| 18 | meta[lang=de] |
| 19 | { |
| 20 | title: "ZeigeID"; |
| 21 | description: "Dieser Stil ist für eine Ebene mit der .osm-Datei von Keypad-Mapper 3. Er zeigt die (positive) ID der Hausnummern. Dadurch kann man die Reihenfolge nachvollziehen, in der man die Punkte aufgenommen hat. Dies kann bei der Hauszuordnung helfen, wenn manche der aufgenommenen Hausnummern auf einem Haufen sind. Mehr Informationen, wie dieser Stil benutzt wird siehe den angegebenen Link."; |
| 22 | link: "https://josm.openstreetmap.de/wiki/De:Styles/ShowID"; |
| 23 | } |
| 24 | |
| 25 | node[osm_id()<0]::id |
| 26 | { |
| 27 | text-halo-color: white; |
| 28 | text-halo-radius: 3; |
| 29 | font-size: 12; |
| 30 | text-color: black; |
| 31 | text-anchor-vertical: center; |
| 32 | text-offset-x: 10; |
| 33 | text-offset-y: -15; |
| 34 | text: eval(get(split(".", -osm_id()), 0)); |
| 35 | z-index: 1; |
| 36 | } |
| 37 | }}} |