mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
686 B
PHTML
17 lines
686 B
PHTML
<section id='InlineMap'>
|
|
<div class="{{gfx()['container']}}">
|
|
<h5>
|
|
<a href="{{getSetting($data->area->name.'_'.$data->part.'_link')}}">
|
|
{{getSetting($data->area->name.'_'.$data->part.'_title')}}
|
|
</a>
|
|
</h5>
|
|
</div>
|
|
<div id="mapContainer" @if(getSetting($data->area->name.'_'.$data->part.'_dark')) class="dark-mode" @endif>
|
|
|
|
</div>
|
|
@php($mapData = explode(',',getSetting($data->area->name.'_'.$data->part.'_loc')))
|
|
<input type="hidden" id="maplat" value="{{$mapData[0]}}">
|
|
<input type="hidden" id="maplng" value="{{$mapData[1]}}">
|
|
<input type="hidden" id="mapzoom" value="{{$mapData[2]}}">
|
|
</section>
|