PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / google-maps / block.json

block.json in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/blocks/google-maps/block.json

78 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "ghostkit/google-maps",
5 "category": "ghostkit",
6 "title": "Google Maps",
7 "description": "Show maps with custom styles, markers and settings.",
8 "keywords": ["maps", "google"],
9 "supports": {
10 "html": false,
11 "className": false,
12 "anchor": true,
13 "align": ["wide", "full"]
14 },
15 "attributes": {
16 "lat": {
17 "type": "number",
18 "default": 40.7127753
19 },
20 "lng": {
21 "type": "number",
22 "default": -74.0059728
23 },
24 "zoom": {
25 "type": "number",
26 "default": 10
27 },
28 "height": {
29 "type": "number",
30 "default": 350
31 },
32 "showZoomButtons": {
33 "type": "boolean",
34 "default": true
35 },
36 "showMapTypeButtons": {
37 "type": "boolean",
38 "default": true
39 },
40 "showStreetViewButton": {
41 "type": "boolean",
42 "default": true
43 },
44 "showFullscreenButton": {
45 "type": "boolean",
46 "default": true
47 },
48 "optionScrollWheel": {
49 "type": "boolean",
50 "default": true
51 },
52 "gestureHandling": {
53 "type": "string",
54 "default": "greedy"
55 },
56 "optionDraggable": {
57 "type": "boolean",
58 "default": true
59 },
60 "style": {
61 "type": "string",
62 "default": "default"
63 },
64 "styleCustom": {
65 "type": "string",
66 "default": ""
67 },
68 "markers": {
69 "type": "array",
70 "default": []
71 },
72 "fullHeight": {
73 "type": "boolean",
74 "default": false
75 }
76 }
77 }
78