29 lines
761 B
PHP
29 lines
761 B
PHP
<?
|
|
//echo ( isset($map['js']) ? $map['js'] : '');
|
|
?>
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h5 class="modal-title">Title</h5>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<?
|
|
//print_r($transport_data);
|
|
?>
|
|
<div id="directionsDiv" style="margin-top:15px"></div>
|
|
<div class="map-container map-symbol-custom">
|
|
<?php echo $map['html']; ?>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-link" data-dismiss="modal">Close</button>
|
|
</div>
|
|
<script type="text/javascript">
|
|
loaded_data[0] = '<?= str_replace("'","\\'",stripslashes($directionsStart)) ?>';
|
|
loaded_data[1] = '<?= str_replace("'","\\'",stripslashes($directionsEnd)) ?>';
|
|
</script>
|