Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function getStyle(feature, resolution) {
  2. var color = "green";
  3. const name = feature.get("name");
  4. if (name.startsWith("A ")) color = "blue";
  5. else if (name.startsWith("L ")) color = "red";
  6. return new ol.style.Style({
  7. stroke: new ol.style.Stroke({
  8. color: color,
  9. width: 2
  10. })
  11. });
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement