-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.json
83 lines (83 loc) · 1.56 KB
/
block.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "map-garmin/map-garmin-activities",
"version": "0.1.0",
"title": "Map Garmin Activities",
"category": "widgets",
"icon": "location-alt",
"description": "Display Garmin activity start locations on a Mapbox map, plus GPX tracks.",
"supports": {
"html": false
},
"attributes": {
"mapGarminActivitiesTextField": {
"type": "string"
},
"zoom": {
"type": "integer",
"default": 13
},
"mapTitle": {
"type": "string"
},
"isTokenValid": {
"type": "boolean",
"default": true
},
"mapboxApiTokenField": {
"type": "string"
},
"mapStyle": {
"type": "string",
"default": "mapbox://styles/mapbox/satellite-streets-v12"
},
"trackColour": {
"type": "string",
"default": "#888888"
},
"trackThickness": {
"type": "number",
"default": 5
},
"markerColor": {
"type": "string",
"default": "red"
},
"mapCenter": {
"type": "object",
"default": {
"longitude": -3.647891,
"latitude": 57.120085
}
},
"pitch": {
"type": "number",
"default": 80
},
"bearing": {
"type": "number",
"default": 10
},
"trackCoords": {
"type": "string",
"default": ""
},
"trackURL": {
"type": "string",
"default": ""
},
"gpxAsJSON": {
"type": "string",
"default": ""
},
"showStartLocations": {
"type": "boolean",
"default": false
}
},
"textdomain": "map-garmin-activities",
"editorScript": "file:build/index.js",
"editorStyle": "file:build/index.css",
"style": "file:build/style-index.css"
}