| 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 |
|