Changes between Version 4 and Version 5 of Fr:Help/Styles/MapCSSImplementation


Ignore:
Timestamp:
2021-11-29T10:15:33+01:00 (3 years ago)
Author:
leni
Comment:

adjusted to 202 : Ajout des exemples suivants : is_clockwise() / is_anticlockwise()

Legend:

Unmodified
Added
Removed
Modified
  • Fr:Help/Styles/MapCSSImplementation

    v4 v5  
    1 [[TranslatedPages(revision=200)]]
     1[[TranslatedPages(revision=202)]]
    22[[PageOutline(2-10,Table des Matières)]]
    33= Mise en œuvre de MapCSS =
     
    13991399}}}
    14001400
     1401* enveloppe à l'intérieur de la zone
     1402{{{
     1403#!mapcss
     1404area[building]:clockwise {
     1405    right-casing-width: 10;
     1406}
     1407area[building]:anticlockwise {
     1408    left-casing-width: 10;
     1409}
     1410/* ou */
     1411area[building][is_clockwise()] {
     1412    right-casing-width: 10;
     1413}
     1414area[building][is_anticlockwise()] {
     1415    left-casing-width: 10;
     1416}
     1417}}}
     1418
    14011419
    14021420== Remarques sur la compatibilité ==