PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / google-map / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/google-map/block.json

146 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/google-map",
5 "title": "Google Map",
6 "category": "bkbg-business",
7 "icon": "location-alt",
8 "description": "Embed a Google Map by address with zoom, map type, caption, border, and shadow controls.",
9 "keywords": [
10 "map",
11 "google",
12 "location",
13 "address",
14 "embed",
15 "place"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-google-map-editor",
19 "editorStyle": "bkbg-google-map-style",
20 "style": "bkbg-google-map-style",
21 "viewScript": "bkbg-google-map-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "address": {
33 "type": "string",
34 "default": "New York, NY, USA"
35 },
36 "apiKey": {
37 "type": "string",
38 "default": ""
39 },
40 "zoom": {
41 "type": "number",
42 "default": 14
43 },
44 "mapType": {
45 "type": "string",
46 "default": "roadmap"
47 },
48 "allowFullscreen": {
49 "type": "boolean",
50 "default": true
51 },
52 "lazyLoad": {
53 "type": "boolean",
54 "default": true
55 },
56 "mapHeight": {
57 "type": "number",
58 "default": 450
59 },
60 "maxWidth": {
61 "type": "number",
62 "default": 0
63 },
64 "borderRadius": {
65 "type": "number",
66 "default": 8
67 },
68 "showBorder": {
69 "type": "boolean",
70 "default": false
71 },
72 "borderWidth": {
73 "type": "number",
74 "default": 1
75 },
76 "borderStyle": {
77 "type": "string",
78 "default": "solid"
79 },
80 "borderColor": {
81 "type": "string",
82 "default": "#e2e8f0"
83 },
84 "showShadow": {
85 "type": "boolean",
86 "default": true
87 },
88 "shadowH": {
89 "type": "number",
90 "default": 0
91 },
92 "shadowV": {
93 "type": "number",
94 "default": 8
95 },
96 "shadowBlur": {
97 "type": "number",
98 "default": 32
99 },
100 "shadowSpread": {
101 "type": "number",
102 "default": 0
103 },
104 "shadowColor": {
105 "type": "string",
106 "default": "rgba(0,0,0,0.12)"
107 },
108 "showCaption": {
109 "type": "boolean",
110 "default": false
111 },
112 "caption": {
113 "type": "string",
114 "default": "Our location"
115 },
116 "captionSize": {
117 "type": "number",
118 "default": 14
119 },
120 "captionWeight": {
121 "type": "number",
122 "default": 400
123 },
124 "captionColor": {
125 "type": "string",
126 "default": "#6b7280"
127 },
128 "captionAlign": {
129 "type": "string",
130 "default": "center"
131 },
132 "captionSpacing": {
133 "type": "number",
134 "default": 12
135 },
136 "captionLineHeight": {
137 "type": "number",
138 "default": 1.5
139 },
140 "typoCaption": {
141 "type": "object",
142 "default": {}
143 }
144 }
145 }
146