# ghostkit/3.3.3/gutenberg/blocks/google-maps/save.js

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

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/blocks/google-maps/save.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/blocks/google-maps/save.js
- Modified: 2024-02-18T18:40:24+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/save.js#L10-L20`.

```javascript
import classnames from 'classnames/dedupe';

import { RichText, useBlockProps } from '@wordpress/block-editor';
import { applyFilters } from '@wordpress/hooks';

import { maybeDecode } from '../../utils/encode-decode';
import metadata from './block.json';

const { name } = metadata;

/**
 * Block Save Class.
 *
 * @param props
 */
export default function BlockSave(props) {
	const {
		height,
		zoom,
		lat,
		lng,
		showZoomButtons,
		showMapTypeButtons,
		showStreetViewButton,
		showFullscreenButton,
		optionScrollWheel,
		gestureHandling,
		optionDraggable,
		styleCustom,
		markers,
		fullHeight,
	} = props.attributes;

	let className = 'ghostkit-google-maps';

	// add full height classname.
	if (fullHeight) {
		className = classnames(className, 'ghostkit-google-maps-fullheight');
	}

	className = applyFilters('ghostkit.blocks.className', className, {
		name,
		...props,
	});

	const attrs = {
		className,
		style: { minHeight: height },
		'data-lat': lat,
		'data-lng': lng,
		'data-zoom': zoom,
		'data-show-zoom-buttons': showZoomButtons ? 'true' : 'false',
		'data-show-map-type-buttons': showMapTypeButtons ? 'true' : 'false',
		'data-show-street-view-button': showStreetViewButton ? 'true' : 'false',
		'data-show-fullscreen-button': showFullscreenButton ? 'true' : 'false',
		'data-option-scroll-wheel': optionScrollWheel ? 'true' : 'false',
		'data-option-draggable': optionDraggable ? 'true' : 'false',
		'data-styles': maybeDecode(styleCustom),
	};

	if (gestureHandling !== 'greedy') {
		attrs['data-gesture-handling'] = gestureHandling;
	}

	const blockProps = useBlockProps.save(attrs);

	return (
		<div {...blockProps}>
			{markers
				? markers.map((marker, i) => {
						const thereIsIcon =
							marker.iconImageURL &&
							marker.iconImageCustomWidth &&
							marker.iconImageWidth &&
							marker.iconImageHeight;

						const markerData = {
							'data-title': marker.title,
							'data-lat': marker.lat,
							'data-lng': marker.lng,
							'data-address': marker.address,
						};

						if (thereIsIcon) {
							const iconImageCustomHeight =
								marker.iconImageCustomWidth *
								(marker.iconImageHeight /
									marker.iconImageWidth);

							markerData['data-icon-url'] = marker.iconImageURL;
							markerData['data-icon-width'] =
								marker.iconImageCustomWidth;
							markerData['data-icon-height'] =
								iconImageCustomHeight;
						}

						if (
							marker.infoWindowText &&
							!RichText.isEmpty(marker.infoWindowText)
						) {
							markerData.children = (
								<div
									key="ghostkit-pro-google-maps-marker-info-window-text"
									className="ghostkit-pro-google-maps-marker-info-window-text"
									style={{ display: 'none' }}
								>
									<RichText.Content
										value={marker.infoWindowText}
									/>
								</div>
							);
						}

						const markerName = `marker-${i}`;

						return (
							<div
								key={markerName}
								className="ghostkit-google-maps-marker"
								{...markerData}
							/>
						);
					})
				: ''}
		</div>
	);
}

```
