Files
2026-05-18 09:49:49 +02:00

31 lines
969 B
PHP

<div id="page" class="contact">
<?php if ($page->header): ?>
<h1><?php echo $page->header ?></h1>
<?php endif;?>
<div class="text"><?php echo $page->content ?></div>
<div id="gmap-frame">
<?php
$map_lat = isset($map_marker['lat']) ? $map_marker['lat'] : $map_center['lat'];
$map_lon = isset($map_marker['lon']) ? $map_marker['lon'] : $map_center['lon'];
$map_zoom = isset($map_center['zoom']) ? $map_center['zoom'] : 14;
$map_query = $map_lat.','.$map_lon;
$map_src = 'https://maps.google.com/maps?'.http_build_query(array(
'q' => $map_query,
'll' => $map_query,
'z' => $map_zoom,
'output' => 'embed',
));
?>
<iframe
id="gmap"
src="<?php echo html::specialchars($map_src) ?>"
title="Centrum Copy - mapa dojazdu"
width="500"
height="400"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"></iframe>
</div>
</div>