aboutsummaryrefslogtreecommitdiffhomepage
path: root/snippets/json_maplibre_style_circle
blob: 485241ccb298770e6c5f91fdf921aac77752900e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    {
      "id": "points",
      "type": "circle",
      "source": "power.points",
      "paint": {
        "circle-color": "red",
        "circle-radius": [
          "interpolate", ["linear"], ["zoom"],
          10, 3,
          18, 10
        ],
        "circle-stroke-width": [
          "interpolate", ["linear"], ["zoom"],
          8, 1,
          13, 3
        ],
        "circle-stroke-color": "white"
      }
    }