Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
509B

  1. <?php
  2. /**
  3. * @var \App\View\AppView $this
  4. */
  5. $this->assign('title', 'Home');
  6. ?>
  7. <div class="content">
  8. <h1>Welcome</h1>
  9. <p>This page is rendered through the default layout, so the header and footer below are shared across every page.</p>
  10. <?= $this->Leaflet->map() ?>
  11. <?php
  12. $this->Leaflet->addMarker([
  13. 'lat' => 42.9634,
  14. 'lng' => -85.6681,
  15. 'title' => 'Grand Rapids, MI',
  16. 'content' => 'Grand Rapids, MI',
  17. ]);
  18. $this->Leaflet->finalize();
  19. ?>
  20. </div>

Powered by TurnKey Linux.