34 lines
959 B
PHP
34 lines
959 B
PHP
<br/><br/>
|
||
<h3><?= $point->name ?></h3>
|
||
|
||
Координаты:
|
||
<nobr>
|
||
<?= $point->lat > 0 ? 'N' : 'S' ?><?= $point->lat > 0 ? $point->lat : (-1 * $point->lat) ?>°
|
||
<?= $point->lng > 0 ? 'E' : 'W' ?><?= $point->lng > 0 ? $point->lng : (-1 * $point->lng) ?>°
|
||
</nobr>
|
||
/
|
||
<nobr>
|
||
<?= $point->lat > 0 ? 'N' : 'S' ?><?= Coord::dergeeToMinute($point->lat) ?>
|
||
<?= $point->lng > 0 ? 'E' : 'W' ?><?= Coord::dergeeToMinute($point->lng) ?>
|
||
</nobr>
|
||
/
|
||
<a href="/?point=<?= $point->id ?>">На карте</a>
|
||
|
||
<br/><br/>
|
||
<?= $point->descriptionHtml ?>
|
||
<br/>
|
||
|
||
<?php if ($point->img): ?>
|
||
<div style="text-align: center">
|
||
<img src="<?= $point->img ?>" style="max-width: 800px;">
|
||
</div>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($photos): ?>
|
||
<div style="text-align: center">
|
||
<?php foreach ($photos as $photo): ?>
|
||
<img src="/photos/<?= $photo->name ?>" style="max-width: 800px;">
|
||
<?php endforeach; ?>
|
||
</div>
|
||
<?php endif; ?>
|