Changes between Version 1 and Version 2 of El:Styles/ShowID


Ignore:
Timestamp:
2025-05-05T14:25:41+02:00 (12 days ago)
Author:
stoecker
Comment:

Drop code

Legend:

Unmodified
Added
Removed
Modified
  • El:Styles/ShowID

    v1 v2  
    44Αυτό το στυλ προορίζεται για ένα επίπεδο με το αρχείο .osm από το Keypad-Mapper 3. Εμφανίζει τα (θετικά) αναγνωριστικά (ID) των αριθμών σπιτιών. Έτσι μπορείτε να δείτε τη σειρά των κόμβων, όπως τους καταγράψατε. Αυτό μπορεί να σας βοηθήσει στην αντιστοίχιση των σπιτιών, ειδικά αν κάποιοι από τους καταγεγραμμένους αριθμούς είναι συγκεντρωμένοι. Για περισσότερες πληροφορίες σχετικά με τη χρήση αυτού του στυλ, δείτε τη [osmwiki:See_the_tagging_sequence_of_Keypad-Mapper_3_in_JOSM σχετική σελίδα της OSM Wiki].
    55
    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 }}}
     6[[wiki:Styles/ShowID]]