# ghostkit/3.3.3/gutenberg/blocks/google-maps/block.json

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 78 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/blocks/google-maps/block.json
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/blocks/google-maps/block.json
- Modified: 2023-09-26T09:21:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/blocks/google-maps/block.json#L10-L20`.

```json
{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "ghostkit/google-maps",
  "category": "ghostkit",
  "title": "Google Maps",
  "description": "Show maps with custom styles, markers and settings.",
  "keywords": ["maps", "google"],
  "supports": {
    "html": false,
    "className": false,
    "anchor": true,
    "align": ["wide", "full"]
  },
  "attributes": {
    "lat": {
      "type": "number",
      "default": 40.7127753
    },
    "lng": {
      "type": "number",
      "default": -74.0059728
    },
    "zoom": {
      "type": "number",
      "default": 10
    },
    "height": {
      "type": "number",
      "default": 350
    },
    "showZoomButtons": {
      "type": "boolean",
      "default": true
    },
    "showMapTypeButtons": {
      "type": "boolean",
      "default": true
    },
    "showStreetViewButton": {
      "type": "boolean",
      "default": true
    },
    "showFullscreenButton": {
      "type": "boolean",
      "default": true
    },
    "optionScrollWheel": {
      "type": "boolean",
      "default": true
    },
    "gestureHandling": {
      "type": "string",
      "default": "greedy"
    },
    "optionDraggable": {
      "type": "boolean",
      "default": true
    },
    "style": {
      "type": "string",
      "default": "default"
    },
    "styleCustom": {
      "type": "string",
      "default": ""
    },
    "markers": {
      "type": "array",
      "default": []
    },
    "fullHeight": {
      "type": "boolean",
      "default": false
    }
  }
}

```
