21 lines
703 B
HTML
21 lines
703 B
HTML
|
|
{{:ModuleInclude('public/header')}}
|
||
|
|
|
||
|
|
<!-- content start -->
|
||
|
|
{{if isset($params['lng']) and isset($params['lat']) and $params['lng'] neq 0 and $params['lat'] neq 0}}
|
||
|
|
<div id="map" data-level="17"></div>
|
||
|
|
{{else /}}
|
||
|
|
<div class="table-no"><i class="am-icon-warning"></i> {{:MyLang('map_coordinate_error')}}</div>
|
||
|
|
{{/if}}
|
||
|
|
<!-- content end -->
|
||
|
|
|
||
|
|
<!-- footer start -->
|
||
|
|
{{:ModuleInclude('public/footer')}}
|
||
|
|
{{if isset($params['lng']) and isset($params['lat']) and $params['lng'] neq 0 and $params['lat'] neq 0}}
|
||
|
|
<script type="text/javascript">
|
||
|
|
$(function()
|
||
|
|
{
|
||
|
|
// 百度地图初始化
|
||
|
|
MapInit({{$params['lng']}}, {{$params['lat']}}, null, false);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
{{/if}}
|