point_attribute.ysld 785 B

12345678910111213141516171819202122232425262728293031323334
  1. title: 'YSLD Cook Book: Attribute-based point'
  2. feature-styles:
  3. - name: name
  4. rules:
  5. - name: SmallPop
  6. title: 1 to 50000
  7. filter: ${pop < '50000'}
  8. symbolizers:
  9. - point:
  10. size: 8
  11. symbols:
  12. - mark:
  13. shape: circle
  14. fill-color: '#0033CC'
  15. - name: MediumPop
  16. title: 50000 to 100000
  17. filter: ${pop >= '50000' AND pop < '100000'}
  18. symbolizers:
  19. - point:
  20. size: 12
  21. symbols:
  22. - mark:
  23. shape: circle
  24. fill-color: '#0033CC'
  25. - name: LargePop
  26. title: Greater than 100000
  27. filter: ${pop >= '100000'}
  28. symbolizers:
  29. - point:
  30. size: 16
  31. symbols:
  32. - mark:
  33. shape: circle
  34. fill-color: '#0033CC'