vr-shopxo-source/app/admin/view/default/map/index.html

21 lines
703 B
HTML
Raw Normal View History

2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/header')}}
2022-07-07 12:27:16 +00:00
<!-- 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 /}}
2023-01-31 10:44:32 +00:00
<div class="table-no"><i class="am-icon-warning"></i> {{:MyLang('map_coordinate_error')}}</div>
2022-07-07 12:27:16 +00:00
{{/if}}
<!-- content end -->
<!-- footer start -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/footer')}}
2022-07-07 12:27:16 +00:00
{{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);
2022-07-07 12:27:16 +00:00
});
</script>
{{/if}}