block.json
7 months ago
view.asset.php
1 month ago
view.css
5 months ago
view.js
1 month ago
view.rtl.css
5 months ago
block.json
65 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/map", |
| 5 | "title": "Map", |
| 6 | "description": "Add an interactive map showing one or more locations.", |
| 7 | "keywords": [ |
| 8 | "maps", |
| 9 | "location", |
| 10 | "navigation" |
| 11 | ], |
| 12 | "version": "12.5.0", |
| 13 | "textdomain": "jetpack", |
| 14 | "category": "embed", |
| 15 | "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z' /></svg>", |
| 16 | "supports": { |
| 17 | "defaultStylePicker": false, |
| 18 | "html": false |
| 19 | }, |
| 20 | "attributes": { |
| 21 | "align": { |
| 22 | "type": "string" |
| 23 | }, |
| 24 | "points": { |
| 25 | "type": "array", |
| 26 | "default": [] |
| 27 | }, |
| 28 | "address": { |
| 29 | "type": "string", |
| 30 | "default": "" |
| 31 | }, |
| 32 | "mapDetails": { |
| 33 | "type": "boolean", |
| 34 | "default": true |
| 35 | }, |
| 36 | "zoom": { |
| 37 | "type": "integer", |
| 38 | "default": 13 |
| 39 | }, |
| 40 | "mapCenter": { |
| 41 | "type": "object", |
| 42 | "default": { |
| 43 | "longitude": -122.41941550000001, |
| 44 | "latitude": 37.7749295 |
| 45 | } |
| 46 | }, |
| 47 | "markerColor": { |
| 48 | "type": "string", |
| 49 | "default": "red" |
| 50 | }, |
| 51 | "scrollToZoom": { |
| 52 | "type": "boolean", |
| 53 | "default": false |
| 54 | }, |
| 55 | "mapHeight": { |
| 56 | "type": "integer" |
| 57 | }, |
| 58 | "showFullscreenButton": { |
| 59 | "type": "boolean", |
| 60 | "default": true |
| 61 | } |
| 62 | }, |
| 63 | "example": {}, |
| 64 | "editorScript": "jetpack-blocks-editor" |
| 65 | } |