index.php 683 B

1234567891011121314151617181920212223
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\helpers\Url;
  4. ?>
  5. <?php if (!empty($lng2) && !empty($lat2)) { ?>
  6. <a href="<?= Url::to(['/map/riding-route',
  7. 'type' => $type,
  8. 'label' => $label,
  9. 'lng' => $lng,
  10. 'lat' => $lat,
  11. 'label2' => $label2,
  12. 'lng2' => $lng2,
  13. 'lat2' => $lat2,
  14. ])?>" data-toggle="modal" data-target="#ajaxModalMax" class="blue"><?= $title ?></a>
  15. <?php } else { ?>
  16. <a href="<?= Url::to(['/map/map-view',
  17. 'type' => $type,
  18. 'label' => $label,
  19. 'lng' => $lng,
  20. 'lat' => $lat,
  21. ])?>" data-toggle="modal" data-target="#ajaxModalMax"><i class="fa fa-map-marker blue"></i></a>
  22. <?php } ?>
粤ICP备19079148号