178 lines
6.7 KiB
Plaintext
178 lines
6.7 KiB
Plaintext
@{
|
|
ViewData["MainNum"] = "1";
|
|
ViewData["SubNum"] = "1";
|
|
ViewData["Title"] = "地圖總覽";
|
|
}
|
|
<ol class="breadcrumb page-breadcrumb">
|
|
<li class="breadcrumb-item"><a href="javascript:void(0);">總覽</a></li>
|
|
<li class="breadcrumb-item active">@ViewData["Title"]</li>
|
|
<li class="position-absolute pos-top pos-right d-none d-sm-block"><span class="js-get-date"></span></li>
|
|
</ol>
|
|
|
|
<div class="row">
|
|
<div class="col-xl-12">
|
|
<div id="map"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@section Scripts{
|
|
|
|
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
|
|
<script src="https://unpkg.com/@googlemaps/markerclustererplus/dist/index.min.js"></script>
|
|
|
|
<script>
|
|
var companyTable; var companyAuthTable;
|
|
|
|
$(function () {
|
|
//#region 公司管理列表 DataTable
|
|
companyTable = $("#company_table").DataTable({
|
|
"paging": true,
|
|
"lengthChange": false,
|
|
"searching": false,
|
|
"ordering": true,
|
|
"info": true,
|
|
"autoWidth": false,
|
|
"responsive": true,
|
|
"order": [[8, "desc"]],
|
|
"columns": [{
|
|
"data": "id"
|
|
}, {
|
|
"data": "logo"
|
|
}, {
|
|
"data": "name"
|
|
}, {
|
|
"data": "taxIDNumber"
|
|
}, {
|
|
"data": "phone"
|
|
}, {
|
|
"data": "address"
|
|
}, {
|
|
"data": "registerRatio"
|
|
}, {
|
|
"data": "spStationAmount"
|
|
}, {
|
|
"data": "createdAt"
|
|
}, {
|
|
"data": "function",
|
|
}],
|
|
"columnDefs": [{
|
|
'targets': 1,
|
|
'searchable': false,
|
|
'orderable': false,
|
|
'className': 'dt-body-center',
|
|
'render': function (data, type, full, meta) {
|
|
return '<img src="' + data + '?v=' + Date.now() + '" class="img-fluid">';
|
|
}
|
|
}],
|
|
"language": {
|
|
"emptyTable": "無資料...",
|
|
"processing": "處理中...",
|
|
"loadingRecords": "載入中...",
|
|
"lengthMenu": "顯示 _MENU_ 項結果",
|
|
"zeroRecords": "沒有符合的結果",
|
|
"info": "顯示第 _START_ 至 _END_ 項結果,共 _TOTAL_ 項",
|
|
"infoEmpty": "顯示第 0 至 0 項結果,共 0 項",
|
|
"infoFiltered": "(從 _MAX_ 項結果中過濾)",
|
|
"infoPostFix": "",
|
|
"search": "搜尋:",
|
|
"paginate": {
|
|
"first": "第一頁",
|
|
"previous": "上一頁",
|
|
"next": "下一頁",
|
|
"last": "最後一頁"
|
|
},
|
|
"aria": {
|
|
"sortAscending": ": 升冪排列",
|
|
"sortDescending": ": 降冪排列"
|
|
}
|
|
},
|
|
'createdRow': function (row, data, dataIndex) {
|
|
$(row).attr('data-id', data.id);
|
|
},
|
|
"ajax": {
|
|
"url": "/Company/CompanyList",
|
|
"type": "POST",
|
|
"data": function (d) {
|
|
d.SelectedCompanyId = $('#system_admin_account').val();
|
|
d.Name = $('#company_name').val();
|
|
d.Phone = $('#company_phone').val();
|
|
d.TaxIDNumber = $('#company_taxIDNumber').val();
|
|
},
|
|
"dataSrc": function (rel) {
|
|
if (rel.data.code == "9999") {
|
|
toast_error(rel.data.msg);
|
|
return;
|
|
}
|
|
|
|
data = rel.data.data;
|
|
|
|
if (data == null || data.length == 0) {
|
|
this.data = [];
|
|
}
|
|
|
|
return data;
|
|
}
|
|
}
|
|
});
|
|
//#endregion
|
|
|
|
//#region google map
|
|
initMap();
|
|
//#endregion
|
|
});
|
|
|
|
function initMap() {
|
|
const map = new google.maps.Map(document.getElementById("map"), {
|
|
zoom: 7,
|
|
center: { lat: 23.5, lng: 123 },
|
|
});
|
|
// Create an array of alphabetical characters used to label the markers.
|
|
const labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
// Add some markers to the map.
|
|
// Note: The code uses the JavaScript Array.prototype.map() method to
|
|
// create an array of markers based on a given "locations" array.
|
|
// The map() method here has nothing to do with the Google Maps API.
|
|
const markers = locations.map((location, i) => {
|
|
return new google.maps.Marker({
|
|
position: location,
|
|
label: labels[i % labels.length],
|
|
map: map
|
|
});
|
|
});
|
|
// Add a marker clusterer to manage the markers.
|
|
new MarkerClusterer(map, markers, {
|
|
imagePath:
|
|
"https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m",
|
|
});
|
|
}
|
|
const locations = [
|
|
{ lat: -31.56391, lng: 147.154312 },
|
|
{ lat: -33.718234, lng: 150.363181 },
|
|
{ lat: -33.727111, lng: 150.371124 },
|
|
{ lat: -33.848588, lng: 151.209834 },
|
|
{ lat: -33.851702, lng: 151.216968 },
|
|
{ lat: -34.671264, lng: 150.863657 },
|
|
{ lat: -35.304724, lng: 148.662905 },
|
|
{ lat: -36.817685, lng: 175.699196 },
|
|
{ lat: -36.828611, lng: 175.790222 },
|
|
{ lat: -37.75, lng: 145.116667 },
|
|
{ lat: -37.759859, lng: 145.128708 },
|
|
{ lat: -37.765015, lng: 145.133858 },
|
|
{ lat: -37.770104, lng: 145.143299 },
|
|
{ lat: -37.7737, lng: 145.145187 },
|
|
{ lat: -37.774785, lng: 145.137978 },
|
|
{ lat: -37.819616, lng: 144.968119 },
|
|
{ lat: -38.330766, lng: 144.695692 },
|
|
{ lat: -39.927193, lng: 175.053218 },
|
|
{ lat: -41.330162, lng: 174.865694 },
|
|
{ lat: -42.734358, lng: 147.439506 },
|
|
{ lat: -42.734358, lng: 147.501315 },
|
|
{ lat: -42.735258, lng: 147.438 },
|
|
{ lat: -43.999792, lng: 170.463352 },
|
|
];
|
|
}
|
|
|
|
</script>
|
|
}
|