@aggdirect/coolmap-services 1.2.3 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/service/coolmap.service.mjs +454 -0
- package/esm2022/lib/service/data-model.mjs +90 -0
- package/esm2022/lib/service/utils.service.mjs +293 -0
- package/{fesm2020 → fesm2022}/aggdirect-coolmap-services.mjs +108 -43
- package/fesm2022/aggdirect-coolmap-services.mjs.map +1 -0
- package/package.json +16 -14
- package/esm2020/lib/service/coolmap.service.mjs +0 -446
- package/esm2020/lib/service/data-model.mjs +0 -40
- package/esm2020/lib/service/utils.service.mjs +0 -286
- package/fesm2015/aggdirect-coolmap-services.mjs +0 -799
- package/fesm2015/aggdirect-coolmap-services.mjs.map +0 -1
- package/fesm2020/aggdirect-coolmap-services.mjs.map +0 -1
- /package/{esm2020 → esm2022}/aggdirect-coolmap-services.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
|
@@ -10,9 +10,45 @@ import * as i2 from '@angular/material/snack-bar';
|
|
|
10
10
|
import * as i2$1 from '@angular/platform-browser';
|
|
11
11
|
|
|
12
12
|
class Route {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
index = 0;
|
|
14
|
+
type;
|
|
15
|
+
// Job Code
|
|
16
|
+
customer_contact;
|
|
17
|
+
customer_name;
|
|
18
|
+
delivery_contact;
|
|
19
|
+
delivery_lat;
|
|
20
|
+
delivery_location;
|
|
21
|
+
delivery_lon;
|
|
22
|
+
driver_list;
|
|
23
|
+
material;
|
|
24
|
+
order_number;
|
|
25
|
+
pickup_lat;
|
|
26
|
+
pickup_location;
|
|
27
|
+
pickup_lon;
|
|
28
|
+
project;
|
|
29
|
+
total_count;
|
|
30
|
+
unit;
|
|
31
|
+
values;
|
|
32
|
+
job_id;
|
|
33
|
+
isSelected;
|
|
34
|
+
date;
|
|
35
|
+
// Add Route
|
|
36
|
+
created_at;
|
|
37
|
+
created_by_name;
|
|
38
|
+
customer_id;
|
|
39
|
+
delivery_lat_lng;
|
|
40
|
+
estimated_distance;
|
|
41
|
+
estimated_time;
|
|
42
|
+
materials_id;
|
|
43
|
+
path;
|
|
44
|
+
pickup_lat_lng;
|
|
45
|
+
route_id;
|
|
46
|
+
route_name;
|
|
47
|
+
unit_id;
|
|
48
|
+
note;
|
|
49
|
+
materialLabel;
|
|
50
|
+
isActive;
|
|
51
|
+
prevent;
|
|
16
52
|
}
|
|
17
53
|
const EstinationData = ['estimated_distance', 'estimated_time'];
|
|
18
54
|
var EstinationEnum;
|
|
@@ -45,38 +81,59 @@ var DriverSmsCardEnum;
|
|
|
45
81
|
DriverSmsCardEnum["delivery_location"] = "Delivery Address";
|
|
46
82
|
})(DriverSmsCardEnum || (DriverSmsCardEnum = {}));
|
|
47
83
|
class PopupData {
|
|
84
|
+
coordinate;
|
|
85
|
+
pickup;
|
|
86
|
+
jobCode;
|
|
87
|
+
customer;
|
|
88
|
+
drop;
|
|
89
|
+
routeType;
|
|
90
|
+
title;
|
|
91
|
+
material;
|
|
92
|
+
type;
|
|
48
93
|
}
|
|
49
94
|
class CoolmapConfigModel {
|
|
95
|
+
analyticsRESTURL;
|
|
96
|
+
RESTURLPrefix;
|
|
97
|
+
repository;
|
|
98
|
+
mapboxStyle;
|
|
99
|
+
mapboxAccessToken;
|
|
50
100
|
}
|
|
51
101
|
|
|
52
102
|
class UtilsService {
|
|
103
|
+
http;
|
|
104
|
+
snackBar;
|
|
105
|
+
config;
|
|
106
|
+
analyticsRESTURL = '';
|
|
107
|
+
RESTURLPrefix = '';
|
|
108
|
+
pickupOptions = [];
|
|
109
|
+
destOptions = [];
|
|
110
|
+
ownerOptions = [];
|
|
111
|
+
customerOptions = [];
|
|
112
|
+
unitOptions = [];
|
|
113
|
+
materialOptions = [];
|
|
114
|
+
jcodeOptions = [];
|
|
115
|
+
driverOption = [];
|
|
116
|
+
truckingCompanayOption = [];
|
|
117
|
+
routeNameOptions = [];
|
|
118
|
+
preventnavChange = new BehaviorSubject(false);
|
|
119
|
+
navChangeObserve = this.preventnavChange.asObservable();
|
|
120
|
+
clearViewRouteforJobCode = new BehaviorSubject(false);
|
|
121
|
+
clearViewRouteforJobCodeObserve = this.clearViewRouteforJobCode.asObservable();
|
|
122
|
+
preVentJobdetailclose = new BehaviorSubject(false);
|
|
123
|
+
getpreVentJobdetailclose = this.preVentJobdetailclose.asObservable();
|
|
124
|
+
routeDetailsUtility = new BehaviorSubject({});
|
|
125
|
+
getrouteDetailsUtility = this.routeDetailsUtility.asObservable();
|
|
126
|
+
removeMapEntity = new BehaviorSubject({});
|
|
127
|
+
removeMapEntityUtility = this.removeMapEntity.asObservable();
|
|
128
|
+
dict = new Map();
|
|
129
|
+
unitsList;
|
|
130
|
+
materialsList;
|
|
131
|
+
materialsListForCustomer;
|
|
132
|
+
customersList;
|
|
53
133
|
constructor(http, snackBar, config) {
|
|
54
134
|
this.http = http;
|
|
55
135
|
this.snackBar = snackBar;
|
|
56
136
|
this.config = config;
|
|
57
|
-
this.analyticsRESTURL = '';
|
|
58
|
-
this.RESTURLPrefix = '';
|
|
59
|
-
this.pickupOptions = [];
|
|
60
|
-
this.destOptions = [];
|
|
61
|
-
this.ownerOptions = [];
|
|
62
|
-
this.customerOptions = [];
|
|
63
|
-
this.unitOptions = [];
|
|
64
|
-
this.materialOptions = [];
|
|
65
|
-
this.jcodeOptions = [];
|
|
66
|
-
this.driverOption = [];
|
|
67
|
-
this.truckingCompanayOption = [];
|
|
68
|
-
this.routeNameOptions = [];
|
|
69
|
-
this.preventnavChange = new BehaviorSubject(false);
|
|
70
|
-
this.navChangeObserve = this.preventnavChange.asObservable();
|
|
71
|
-
this.clearViewRouteforJobCode = new BehaviorSubject(false);
|
|
72
|
-
this.clearViewRouteforJobCodeObserve = this.clearViewRouteforJobCode.asObservable();
|
|
73
|
-
this.preVentJobdetailclose = new BehaviorSubject(false);
|
|
74
|
-
this.getpreVentJobdetailclose = this.preVentJobdetailclose.asObservable();
|
|
75
|
-
this.routeDetailsUtility = new BehaviorSubject({});
|
|
76
|
-
this.getrouteDetailsUtility = this.routeDetailsUtility.asObservable();
|
|
77
|
-
this.removeMapEntity = new BehaviorSubject({});
|
|
78
|
-
this.removeMapEntityUtility = this.removeMapEntity.asObservable();
|
|
79
|
-
this.dict = new Map();
|
|
80
137
|
this.analyticsRESTURL = config.analyticsRESTURL;
|
|
81
138
|
this.RESTURLPrefix = config.RESTURLPrefix;
|
|
82
139
|
}
|
|
@@ -318,31 +375,39 @@ class UtilsService {
|
|
|
318
375
|
}
|
|
319
376
|
});
|
|
320
377
|
}
|
|
378
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UtilsService, deps: [{ token: i1.HttpClient }, { token: i2.MatSnackBar }, { token: 'memberData' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
379
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UtilsService, providedIn: 'root' });
|
|
321
380
|
}
|
|
322
|
-
|
|
323
|
-
UtilsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UtilsService, providedIn: 'root' });
|
|
324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UtilsService, decorators: [{
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UtilsService, decorators: [{
|
|
325
382
|
type: Injectable,
|
|
326
383
|
args: [{ providedIn: 'root' }]
|
|
327
|
-
}], ctorParameters:
|
|
384
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: i2.MatSnackBar }, { type: CoolmapConfigModel, decorators: [{
|
|
328
385
|
type: Inject,
|
|
329
386
|
args: ['memberData']
|
|
330
|
-
}] }]
|
|
387
|
+
}] }] });
|
|
331
388
|
|
|
332
389
|
class CoolmapService {
|
|
390
|
+
utils;
|
|
391
|
+
eventManager;
|
|
392
|
+
config;
|
|
393
|
+
map;
|
|
394
|
+
markerOriginList = [];
|
|
395
|
+
markerDestinationList = [];
|
|
396
|
+
initiatecoolmap = new BehaviorSubject(true);
|
|
397
|
+
reintiatecoolmap = this.initiatecoolmap.asObservable();
|
|
398
|
+
bounds = new mapboxgl.LngLatBounds();
|
|
399
|
+
originDestinationCordinates = [];
|
|
400
|
+
padding;
|
|
401
|
+
windowActualHeightWidth;
|
|
402
|
+
popup;
|
|
403
|
+
customTopForCustomer;
|
|
333
404
|
constructor(utils, eventManager, config) {
|
|
334
405
|
this.utils = utils;
|
|
335
406
|
this.eventManager = eventManager;
|
|
336
407
|
this.config = config;
|
|
337
|
-
this.markerOriginList = [];
|
|
338
|
-
this.markerDestinationList = [];
|
|
339
|
-
this.initiatecoolmap = new BehaviorSubject(true);
|
|
340
|
-
this.reintiatecoolmap = this.initiatecoolmap.asObservable();
|
|
341
|
-
this.bounds = new mapboxgl.LngLatBounds();
|
|
342
|
-
this.originDestinationCordinates = [];
|
|
343
408
|
this.customTopForCustomer = this.config.repository === 'customer' ? 65 : 0;
|
|
344
|
-
this.eventManager.addGlobalEventListener('window', 'resize', this.onResize.bind(this));
|
|
345
409
|
this.windowActualHeightWidth = { availHeight: 0 };
|
|
410
|
+
window.addEventListener('resize', this.onResize.bind(this));
|
|
346
411
|
}
|
|
347
412
|
initiateMapForAddRoute(el) {
|
|
348
413
|
return new Promise((resolve, reject) => {
|
|
@@ -754,16 +819,16 @@ class CoolmapService {
|
|
|
754
819
|
}
|
|
755
820
|
});
|
|
756
821
|
}
|
|
822
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CoolmapService, deps: [{ token: UtilsService }, { token: i2$1.EventManager }, { token: 'memberData' }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
823
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CoolmapService, providedIn: 'root' });
|
|
757
824
|
}
|
|
758
|
-
|
|
759
|
-
CoolmapService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CoolmapService, providedIn: 'root' });
|
|
760
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CoolmapService, decorators: [{
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CoolmapService, decorators: [{
|
|
761
826
|
type: Injectable,
|
|
762
827
|
args: [{ providedIn: 'root' }]
|
|
763
|
-
}], ctorParameters:
|
|
828
|
+
}], ctorParameters: () => [{ type: UtilsService }, { type: i2$1.EventManager }, { type: CoolmapConfigModel, decorators: [{
|
|
764
829
|
type: Inject,
|
|
765
830
|
args: ['memberData']
|
|
766
|
-
}] }]
|
|
831
|
+
}] }] });
|
|
767
832
|
|
|
768
833
|
/*
|
|
769
834
|
* Public API Surface of @aggdirect/coolmap-services
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aggdirect-coolmap-services.mjs","sources":["../../../../projects/coolmap-services/src/lib/service/data-model.ts","../../../../projects/coolmap-services/src/lib/service/utils.service.ts","../../../../projects/coolmap-services/src/lib/service/coolmap.service.ts","../../../../projects/coolmap-services/src/public-api.ts","../../../../projects/coolmap-services/src/aggdirect-coolmap-services.ts"],"sourcesContent":["\nexport class Route {\n index: number = 0;\n type?: string | null;\n // Job Code\n customer_contact?: string | null;\n customer_name?: string | null;\n delivery_contact?: string | null;\n delivery_lat?: number | null;\n delivery_location?: string | null | undefined;\n delivery_lon?: number | null;\n driver_list?: Array<any>;\n material?: string | null;\n order_number?: string | null;\n pickup_lat?: number | null;\n pickup_location?: string | null | undefined;\n pickup_lon?: number | null;\n project?: string | null;\n total_count?: number;\n unit?: string | null;\n values: any;\n job_id?: string;\n isSelected?: boolean;\n date?: string;\n // Add Route\n created_at?: string | null;\n created_by_name?: string | null;\n customer_id?: string | null;\n delivery_lat_lng?: string | null;\n estimated_distance?: string | null;\n estimated_time?: string | null;\n materials_id?: string | null;\n path?: [number, number];\n pickup_lat_lng?: string | null;\n route_id?: string | null;\n route_name?: string | null;\n unit_id?: string | null;\n note?: string | null;\n materialLabel?: string | null;\n isActive?: boolean;\n prevent?: boolean;\n}\n\nexport const EstinationData = ['estimated_distance', 'estimated_time']\nexport enum EstinationEnum {\n estimated_distance = \"miles\",\n estimated_time = \"time\"\n}\n\nexport const JobCodeOverviewData = ['order_number', 'customer_name', 'project', 'unit', 'material', 'customer_contact', 'delivery_contact', 'pickup_location', 'delivery_location']\nexport enum JobCodeOverviewEnum {\n material = \"Material\",\n order_number = \"Job Code\",\n customer_name = \"Customer\",\n customer_contact = \"Customer Contact\",\n delivery_contact = \"Delivery Contact\",\n project = \"Project Name\",\n unit = \"Job Type\",\n pickup_location = \"Pickup\",\n delivery_location = \"Delivery\",\n}\n\nexport const DriversmsCardKey = ['order_number', 'date', 'values', 'material', 'unit', 'pickup_location', 'delivery_location']\nexport enum DriverSmsCardEnum {\n order_number = 'Jobcode',\n date = 'Date',\n values = 'Total tasks',\n material = 'Material',\n unit = 'Unit',\n pickup_location = 'Pickup Address',\n delivery_location = 'Delivery Address'\n}\n\nexport class PopupData {\n coordinate: [number, number];\n pickup: string | null;\n jobCode?: string | null;\n customer?: string | null;\n drop: string | null;\n routeType: string | null;\n title: string | null;\n material: string | null;\n type: string | null;\n}\n\nexport class CoolmapConfigModel {\n analyticsRESTURL: string | null;\n RESTURLPrefix: string | null;\n repository: string | null;\n mapboxStyle: string | null;\n mapboxAccessToken: string | null;\n}\n\nexport declare class CustomerRepoDetailsModel {\n customer: CustomerDetailsModel | null;\n projectId: string | null;\n}\n\nexport declare class CustomerDetailsModel {\n id: string | null;\n name: string | null;\n}\n","import { HttpClient } from '@angular/common/http';\nimport { Injectable, Inject } from '@angular/core';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { BehaviorSubject } from 'rxjs';\nimport { CoolmapConfigModel, Route } from './data-model';\n\n@Injectable({ providedIn: 'root' })\nexport class UtilsService {\n analyticsRESTURL = '';\n RESTURLPrefix = '';\n pickupOptions: any[] = [];\n destOptions: any[] = [];\n ownerOptions: any[] = [];\n customerOptions: any[] = [];\n unitOptions: any[] = [];\n materialOptions: any[] = [];\n jcodeOptions: any[] = [];\n driverOption: any[] = [];\n truckingCompanayOption: any[] = [];\n routeNameOptions: any[] = [];\n public preventnavChange = new BehaviorSubject(false);\n navChangeObserve = this.preventnavChange.asObservable();\n clearViewRouteforJobCode = new BehaviorSubject(false);\n clearViewRouteforJobCodeObserve = this.clearViewRouteforJobCode.asObservable();\n preVentJobdetailclose = new BehaviorSubject(false);\n getpreVentJobdetailclose = this.preVentJobdetailclose.asObservable();\n routeDetailsUtility = new BehaviorSubject({});\n getrouteDetailsUtility = this.routeDetailsUtility.asObservable();\n removeMapEntity = new BehaviorSubject({});\n removeMapEntityUtility = this.removeMapEntity.asObservable();\n dict = new Map<string, string>();\n unitsList: any;\n materialsList: any;\n materialsListForCustomer: any;\n customersList: any;\n constructor(public http: HttpClient, public snackBar: MatSnackBar,\n @Inject('memberData') private config: CoolmapConfigModel) {\n this.analyticsRESTURL = config.analyticsRESTURL;\n this.RESTURLPrefix = config.RESTURLPrefix;\n }\n getDateFormat(strVal: Date | null, seprater?: string) {\n seprater = seprater ? seprater : '-';\n const mydate = strVal;\n return mydate?.getFullYear() + seprater + ((mydate ? mydate.getMonth() : 0) + 1) + seprater + mydate?.getDate();\n }\n getData(path: string) { return this.http.get(`${this.analyticsRESTURL}${this.config.repository}/${path}`) }\n postdata(path: string, data: any) { return this.http.post(`${this.analyticsRESTURL}${this.config.repository}/${path}`, data) }\n postDataWithRestUrl(path: string, data: any) { return this.http.post(`${this.RESTURLPrefix}${path}`, data) }\n fetchAutoCompleteLocations(keyword: string) {\n return this.http.get(`https://api.mapbox.com/geocoding/v5/mapbox.places/${keyword}.json?access_token=${this.config.mapboxAccessToken}&country=US`)\n }\n openSnackBar(message: string, className?: string) {\n this.snackBar.open(message, '', {\n duration: 5000, verticalPosition: 'top', horizontalPosition: 'center', panelClass: [className ? className : 'default']\n });\n }\n\n makeOptions(item: Route) {\n if (item.order_number) {\n (this.jcodeOptions.findIndex((elem) => elem.job_id === item.job_id) === -1) ? this.jcodeOptions.push({ job_code: item.order_number, job_id: item.job_id }) : null;\n if (item.driver_list && item.driver_list?.length > 0) {\n item.driver_list.forEach((driver) => {\n this.driverOption.findIndex(elem => elem === driver['driver_name']) === -1 ? this.driverOption.push(driver['driver_name']) : null;\n this.truckingCompanayOption.findIndex(elem => elem === driver['trucking_company']) === -1 ? this.truckingCompanayOption.push(driver['trucking_company']) : null;\n });\n }\n }\n ((this.pickupOptions.findIndex((elem) => elem === item.pickup_location)) === -1) ? this.pickupOptions.push(item.pickup_location) : null;\n ((this.destOptions.findIndex((elem) => elem === item.delivery_location)) === -1) ? this.destOptions.push(item.delivery_location) : null;\n (this.customerOptions.findIndex((customer) => customer === item.customer_name) === -1) ? this.customerOptions.push(item.customer_name) : null;\n (this.unitOptions.findIndex((elem) => elem === item.unit) === -1) ? this.unitOptions.push(item.unit) : null;\n (this.materialOptions.findIndex((elem) => elem === item.material) === -1) ? this.materialOptions.push(item.material) : null;\n if (item.route_name) this.routeNameOptions.findIndex(elem => elem === item.route_name) === -1 ? this.routeNameOptions.push(item.route_name) : null;\n }\n\n filter(value: string, filters: any) {\n if (typeof value !== 'string') { return [] }\n const filterValue = value.toLowerCase();\n if (filterValue === '') { return [] }\n const searchResults: any[] = [];\n this.unitOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"unit\", \"label\": unit, \"value\": unit })\n }\n });\n this.customerOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"customer\", \"label\": unit, \"value\": unit })\n }\n });\n this.materialOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"material\", \"label\": unit, \"value\": unit })\n }\n });\n this.pickupOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"pickup location\", \"label\": unit, \"value\": unit })\n }\n });\n this.destOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"destination location\", \"label\": unit, \"value\": unit })\n }\n });\n this.jcodeOptions.map(unit => {\n if (unit.job_code.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"job\", \"label\": unit['job_code'], \"value\": unit })\n }\n });\n this.driverOption.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"Driver\", \"label\": unit, \"value\": unit })\n }\n });\n\n this.truckingCompanayOption.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"Trucking Company\", \"label\": unit, \"value\": unit })\n }\n });\n this.routeNameOptions.map(unit => {\n if (unit.toLowerCase().includes(filterValue)) {\n searchResults.push({ \"type\": \"Route name\", \"label\": unit, \"value\": unit })\n }\n });\n const searchDict: any = {}\n filters.map((filter: { [x: string]: any; }) => {\n searchDict[filter['name'] + filter['type']] = filter;\n })\n const furtherFilter: any[] = [];\n searchResults.map(search => {\n if ((search['label'] + search['type']) in searchDict) { }\n else { furtherFilter.push(search) }\n });\n return furtherFilter;\n }\n\n getSearchResults(list: Route[], filterval: any): any {\n return list.filter(element => {\n const result_list_boolean = []\n if (filterval.length > 0) {\n if (filterval[0]['type'] === 'unit') {\n result_list_boolean.push(filterval[0]['name'] === element[filterval[0]['type'] as keyof Route]);\n }\n if (filterval[0]['type'] === 'customer') {\n result_list_boolean.push(filterval[0]['name'] === element['customer_name']);\n }\n if (filterval[0]['type'] === 'material') {\n result_list_boolean.push(filterval[0]['name'] === element[filterval[0]['type'] as keyof Route]);\n }\n if (filterval[0]['type'] === 'pickup location') {\n result_list_boolean.push(filterval[0]['name'] === element['pickup_location']);\n }\n if (filterval[0]['type'] === 'destination location') {\n result_list_boolean.push(filterval[0]['name'] === element['delivery_location']);\n }\n if (filterval[0]['type'] === 'job') {\n result_list_boolean.push(filterval[0]['name'] === element['order_number']);\n }\n if (filterval[0]['type'] === 'Route name') {\n result_list_boolean.push(filterval[0]['name'] === element['route_name']);\n }\n if (filterval[0]['type'] === 'Driver') {\n const index = element.driver_list?.findIndex(ele => { return filterval[0]['name'] === ele['driver_name'] });\n if (index !== -1) result_list_boolean.push(true);\n }\n if (filterval[0]['type'] === 'Trucking Company') {\n const index = element.driver_list?.findIndex(ele => { return filterval[0]['name'] === ele['trucking_company'] });\n if (index !== -1) result_list_boolean.push(true);\n }\n }\n if (result_list_boolean.length > 0) {\n return result_list_boolean.reduce((prev, curr) => prev && curr);\n }\n return false;\n });\n }\n\n clearOptions() {\n this.pickupOptions = [];\n this.destOptions = [];\n this.ownerOptions = [];\n this.customerOptions = [];\n this.unitOptions = [];\n this.materialOptions = [];\n this.jcodeOptions = [];\n this.routeNameOptions = [];\n }\n setdictValue(key: string, value: string) {\n this.dict.set(key, value);\n }\n getdictValue(key: string) {\n return JSON.parse(this.dict.get(key));\n }\n removedictValue(key: string) {\n this.dict.delete(key);\n }\n conveySearchIcon(value: any): boolean {\n if (value && typeof (value) !== 'object') return true;\n return false\n }\n fetchUnitsList() {\n return new Promise((resolve, reject) => {\n if (!this.unitsList) {\n this.getData('unit/list/view').subscribe((res: any) => {\n if (res) { this.unitsList = res.data; resolve(this.unitsList); }\n })\n } else {\n resolve(this.unitsList);\n }\n })\n }\n\n fetchMaterialsList() {\n return new Promise((resolve, reject) => {\n if (!this.materialsList) {\n this.getData('material/list/view').subscribe(((res: any) => {\n res.data.sort((a: any, b: any) => a.material.localeCompare(b.material))\n this.materialsList = res.data\n resolve(this.materialsList);\n }))\n } else {\n resolve(this.materialsList);\n }\n })\n }\n fetchMaterialsListForCustomer() {\n return new Promise((resolve, reject) => {\n if (!this.materialsListForCustomer) {\n this.getData('material/list/view').subscribe(((res: any) => {\n let meterialListDetails = []\n res.data.map((item: any) => {\n if (item.sub.length > 0) {\n item.sub.map((subItem) => {\n if (subItem.add_to_marketplace) {\n subItem.material = item.material;\n subItem.material_id = item.material_id;\n subItem.label = item.material + ' | ' + subItem.sub_material;\n meterialListDetails.push(subItem);\n }\n })\n }\n });\n meterialListDetails.sort((a: any, b: any) => a.label.localeCompare(b.label));\n this.materialsListForCustomer = meterialListDetails;\n resolve(this.materialsListForCustomer);\n }))\n } else {\n resolve(this.materialsListForCustomer);\n }\n })\n }\n\n fetchCustomersList() {\n return new Promise((resolve, reject) => {\n if (!this.customersList) {\n this.getData('company/list/view').subscribe((res: any) => {\n if (res) { this.customersList = res.data; resolve(this.customersList); }\n })\n } else {\n resolve(this.customersList);\n }\n })\n }\n}","import { Injectable, Inject } from '@angular/core';\nimport * as mapboxgl from 'mapbox-gl';\nimport * as turf from '@turf/turf';\nimport { BehaviorSubject } from 'rxjs';\nimport { CoolmapConfigModel, PopupData, Route } from './data-model';\nimport { UtilsService } from './utils.service';\nimport { EventManager } from '@angular/platform-browser';\nimport { MapboxLayer } from \"@deck.gl/mapbox\";\nimport { ArcLayer } from '@deck.gl/layers';\n\ndeclare const Threebox: any;\n\n@Injectable({ providedIn: 'root' })\nexport class CoolmapService {\n map!: mapboxgl.Map\n markerOriginList: mapboxgl.Marker[] = [];\n markerDestinationList: mapboxgl.Marker[] = [];\n initiatecoolmap = new BehaviorSubject(true);\n reintiatecoolmap = this.initiatecoolmap.asObservable();\n bounds = new mapboxgl.LngLatBounds();\n originDestinationCordinates: any = [];\n padding!: any;\n windowActualHeightWidth!: any;\n popup: mapboxgl.Popup;\n customTopForCustomer: number;\n\n constructor(public utils: UtilsService, public eventManager: EventManager,\n @Inject('memberData') private config: CoolmapConfigModel) {\n this.customTopForCustomer = this.config.repository === 'customer' ? 65 : 0;\n this.windowActualHeightWidth = { availHeight: 0 };\n window.addEventListener('resize', this.onResize.bind(this));\n }\n\n initiateMapForAddRoute(el: HTMLElement) {\n return new Promise((resolve, reject) => {\n if(this.map) this.map.remove();\n this.map = new mapboxgl.Map({\n accessToken: this.config.mapboxAccessToken,\n container: el,\n style: this.config.mapboxStyle,\n center: [-77.036873, 38.907192],\n zoom: 10, bearing: 0, pitch: 65, interactive: true,\n });\n this.map.once('load', (res) => {\n resolve(res);\n });\n });\n }\n // Below method Load route with animation\n loadMapProperty(pinRouteGeojson: any, index: number, unit: any, route?: any, bottom?: number) {\n return new Promise((resolve, reject)=>{\n let origin = pinRouteGeojson.features[0].geometry.coordinates[0];\n const linecolor = (unit === 'Ton') ? '#ff7272' : (unit === 'Load') ? '#a3c52e' : '#ae23d1';\n let destination = pinRouteGeojson.features[0].geometry.coordinates[pinRouteGeojson.features[0].geometry.coordinates.length - 1];\n this.extendBound(pinRouteGeojson.features[0].geometry.coordinates, true).then((res: any) => {\n const point: any = {\n 'type': 'FeatureCollection',\n 'features': [\n { 'type': 'Feature', 'properties': {}, 'geometry': { 'type': 'Point', 'coordinates': origin } }\n ]\n }\n const lineDistance = turf.length(pinRouteGeojson.features[0]);\n const arc = [];\n const steps = 10 * pinRouteGeojson.features[0].geometry.coordinates.length;\n for (let i = 0; i < lineDistance; i += lineDistance / steps) {\n const segment = turf.along(pinRouteGeojson.features[0], i);\n arc.push(segment.geometry.coordinates);\n }\n pinRouteGeojson.features[0].geometry.coordinates = arc;\n const pinRoute = pinRouteGeojson.features[0].geometry.coordinates;\n const marker = new mapboxgl.Marker(document.createElement('div'))\n .setLngLat(pinRoute[0]).addTo(this.map).togglePopup();\n\n if (this.map.getSource(`line${index}`)) {\n this.removeRouteAndMarker(index).then(() => { })\n }\n\n this.map.addSource(`line${index}`, { type: 'geojson', lineMetrics: true, data: pinRouteGeojson });\n this.map.addLayer({\n type: 'line',\n source: `line${index}`,\n id: `line${index}`,\n paint: {\n 'line-width': 2,\n 'line-gradient': [\n 'interpolate',\n ['linear'],\n ['line-progress'],\n 0, unit === 'Ton' ? '#d7f7e4' : unit === 'Load' ? '#c9d8f5' : '#f5dcc1',\n 1, unit === 'Ton' ? '#ff7272' : unit === 'Load' ? '#a3c52e' : '#ae23d1',\n ]\n },\n layout: { 'line-cap': 'round', 'line-join': 'round' }\n });\n\n const dataSetForMap = {\n counter: 0, pinRouteGeojson, steps,\n point, pointId: `point${index}`,\n marker, pinRoute, lineId: `line${index}`, index,\n origin, destination, lineDistance,\n linecolor, route, isViewRoute: true\n }\n this.createMarker(dataSetForMap);\n this.map.on('mouseenter', `line${index}`, (e) => {\n this.map.setPaintProperty(`line${index}`, 'line-width', 5);\n this.map.setPaintProperty(`line${index}`, 'line-opacity', 1);\n const datasetForPopup: PopupData = {\n coordinate: [e.lngLat.lng, e.lngLat.lat],\n pickup: route.pickup_location ? route.pickup_location : '',\n drop: route.delivery_location ? route.delivery_location : '',\n routeType: route.project ? 'Project' : 'Route',\n title: route.project ? route.project : route.route_name ? route.route_name : '',\n material: route.materialLabel ? route.materialLabel : '',\n type: route.unit ? route.unit : ''\n }\n this.createPopup(datasetForPopup);\n });\n this.map.on('mouseleave', `line${index}`, (e) => {\n this.map.setPaintProperty(`line${index}`, 'line-width', 2);\n if (this.popup) {\n this.popup.remove();\n }\n });\n })\n\n this.map.once('idle', (res) => {\n resolve(true)\n });\n})\n }\n // Below method Load route without animation\n drawLine(cordinates?: any, index?: number | any, route?: any, enablefitbound?: boolean, routeType?: string) {\n let linecolor: any;\n let origin = cordinates[0]; let destination = cordinates[cordinates.length - 1]\n if (origin[0] && origin[1] && destination && destination[0] && destination[1]) {\n linecolor = this.provideLineColor(route['unit'], routeType);\n if (enablefitbound) {\n const padding = {\n top: this.padding.top + this.customTopForCustomer, bottom: this.padding.bottom + (this.windowActualHeightWidth.availHeight - (window.innerHeight - 65)),\n left: this.padding.left, right: this.padding.right\n }\n this.map.fitBounds([origin, destination], {padding, pitch: 65}, { fitboundCompleteJob: true })\n }\n if (this.map.getSource(`route-source-for-job-code${index}`)) {\n this.removeRouteAndMarker(index).then(() => { })\n }\n this.map.addSource(`route-source-for-job-code${index}`, {\n 'type': 'geojson',\n 'data': { 'type': 'Feature', 'properties': {}, 'geometry': { 'type': 'LineString', 'coordinates': cordinates } }\n });\n this.map.addLayer({\n 'id': `route-for-job-code${index}`, 'type': 'line', 'source': `route-source-for-job-code${index}`,\n paint: { 'line-color': linecolor, 'line-width': 2 },\n layout: { 'line-cap': 'round', 'line-join': 'round' }\n });\n const dataSetForMap = {\n origin, destination, index, linecolor, route\n }\n this.createMarker(dataSetForMap);\n this.map.on('mouseenter', `route-for-job-code${index}`, (e) => {\n if (this.popup) {\n this.popup.remove();\n }\n this.map.setPaintProperty(`route-for-job-code${index}`, 'line-width', 5);\n this.map.setPaintProperty(`route-for-job-code${index}`, 'line-opacity', 1);\n const datasetForPopup: PopupData = {\n coordinate: [e.lngLat.lng, e.lngLat.lat],\n pickup: route.pickup_location ? route.pickup_location : '',\n drop: route.delivery_location ? route.delivery_location : '',\n jobCode: route.project ? route.order_number : null,\n customer: route.project ? route.customer_name : null,\n routeType: route.project ? 'Project' : 'Route',\n title: route.project ? route.project : route.route_name ? route.route_name : '',\n material: route.materialLabel ? route.materialLabel : '',\n type: route.unit ? route.unit : ''\n }\n this.createPopup(datasetForPopup);\n });\n this.map.on('mouseleave', `route-for-job-code${index}`, (e) => {\n this.map.setPaintProperty(`route-for-job-code${index}`, 'line-width', 2);\n if (this.popup) {\n this.popup.remove();\n }\n });\n }\n }\n\n provideLineColor(unitType: string, type?: string | undefined) {\n let checkType = (type && !['jobrouteList', 'addroute'].includes(type)) ? true : false;\n let color;\n switch (unitType) {\n case \"Ton\":\n color = checkType ? '#39c471' : '#ff7272';\n break;\n case \"Load\":\n color = checkType ? '#326ad3' : '#a3c52e';\n break;\n case \"Hourly\":\n color = checkType ? '#ffad56' : '#ae23d1';\n break;\n }\n return color;\n }\n\n showRoutePopup(arcDetails, event, isViewRoute?): void {\n if (this.popup) {\n this.popup.remove();\n this.map.setPaintProperty(`${isViewRoute ? 'line' : 'route-for-job-code'}${arcDetails.layer.props.data.index}`, 'line-width', 2);\n }\n if (arcDetails.color && this.map.getLayoutProperty(arcDetails.layer.id, 'visibility') !== 'none') {\n this.map.setPaintProperty(`${isViewRoute ? 'line' : 'route-for-job-code'}${arcDetails.layer.props.data.index}`, 'line-width', 5);\n this.map.setPaintProperty(`${isViewRoute ? 'line' : 'route-for-job-code'}${arcDetails.layer.props.data.index}`, 'line-opacity', 1);\n\n const datasetForPopup: PopupData = {\n coordinate: arcDetails.coordinate,\n pickup: arcDetails.layer.props.data.route.pickup_location ? arcDetails.layer.props.data.route.pickup_location : '',\n drop: arcDetails.layer.props.data.route.delivery_location ? arcDetails.layer.props.data.route.delivery_location : '',\n jobCode: arcDetails.layer.props.data.route.project ? arcDetails.layer.props.data.route.order_number : '',\n customer: arcDetails.layer.props.data.route.project ? arcDetails.layer.props.data.route.customer_name : '',\n routeType: arcDetails.layer.props.data.route.project ? 'Project' : 'Route',\n title: arcDetails.layer.props.data.route.project ? arcDetails.layer.props.data.route.project : arcDetails.layer.props.data.route.route_name ? arcDetails.layer.props.data.route.route_name : '',\n material: arcDetails.layer.props.data.route.materialLabel ? arcDetails.layer.props.data.route.materialLabel : '',\n type: arcDetails.layer.props.data.route.unit ? arcDetails.layer.props.data.route.unit : ''\n }\n this.createPopup(datasetForPopup);\n }\n }\n\n createPopup(datasetForPopup: PopupData): void {\n this.popup = new mapboxgl.Popup({\n closeButton: false,\n closeOnClick: false,\n closeOnMove: true,\n anchor: 'bottom-left'\n });\n\n this.popup.setLngLat(datasetForPopup.coordinate)\n .setHTML(`\n <div class=\"destination\">\n <div class=\"duration\">\n <p class=\"pickprt\"><b>Pickup Location:</b> ${datasetForPopup.pickup}</p>\n <p class=\"dropprt\"><b>Drop Location:</b> ${datasetForPopup.drop}</p>\n </div>\n ${datasetForPopup.jobCode ? '<span><b>Job Code:</b> ' + datasetForPopup.jobCode + '</span>' : ''}\n ${datasetForPopup.customer ? '<span><b>Customer:</b> ' + datasetForPopup.customer + '</span>' : ''}\n <span><b>${datasetForPopup.routeType} Name:</b> ${datasetForPopup.title}</span>\n <span><b>Material:</b> ${datasetForPopup.material}</span>\n <span><b>Type:</b> ${datasetForPopup.type}</span>\n </div>\n `)\n .addTo(this.map);\n }\n\n hexToRGB(hex: any): [number, number, number] {\n return hex.replace(/^#?([a-f\\d])([a-f\\d])([a-f\\d])$/i\n , (m, r, g, b) => '#' + r + r + g + g + b + b)\n .substring(1).match(/.{2}/g)\n .map(x => parseInt(x, 16))\n }\n\n createMarker(routeDetails) {\n if (routeDetails.origin[0] && routeDetails.origin[1] && routeDetails.destination[0] && routeDetails.destination[1]) {\n\n const popup = new mapboxgl.Popup({ closeButton: false }).setHTML('<b>Pickup: </b>' + routeDetails.route?.pickup_location);\n const popupForDestination = new mapboxgl.Popup({ closeButton: false })\n .setHTML('<b>Delivery: </b>' + routeDetails.route?.delivery_location);\n\n const el = document.createElement('div');\n el.className = 'marker';\n el.innerHTML = `<span class='markerPointer' style='background:${routeDetails.linecolor}'><b>P</b><span class='markerSpan' style='border-top: 10px solid ${routeDetails.linecolor}'></span></span>`\n\n const originMarker = new mapboxgl.Marker(el)\n .setPopup(popup).setLngLat(routeDetails.origin).addTo(this.map);\n\n originMarker.getElement().addEventListener('mouseenter', () => originMarker.togglePopup());\n originMarker.getElement().addEventListener('mouseleave', () => originMarker.togglePopup());\n\n const elementForDestination = document.createElement('div');\n elementForDestination.className = 'marker';\n elementForDestination.innerHTML = `<span class='markerPointer' style='background:${routeDetails.linecolor}'><b>D</b><span class='markerSpan' style='border-top: 10px solid ${routeDetails.linecolor}'></span></span>`\n\n const destinationMarker = new mapboxgl.Marker(elementForDestination).setPopup(popupForDestination).setLngLat(routeDetails.destination).addTo(this.map);\n destinationMarker.getElement().addEventListener('mouseenter', () => destinationMarker.togglePopup());\n destinationMarker.getElement().addEventListener('mouseleave', () => destinationMarker.togglePopup());\n this.markerOriginList[routeDetails.index] = originMarker;\n this.markerDestinationList[routeDetails.index] = destinationMarker;\n\n const colorArray = this.hexToRGB(routeDetails.linecolor)\n const arcLayer = new MapboxLayer({\n id: 'arc-layer' + routeDetails.index,\n type: ArcLayer,\n pickable: true,\n data: { route: routeDetails.route, index: routeDetails.index },\n getWidth: 1,\n getSourcePosition: routeDetails.origin,\n getTargetPosition: routeDetails.destination,\n getTargetColor: [255, 255, 255],\n getSourceColor: [colorArray[0], colorArray[1], colorArray[2]],\n onHover: (info, event) => this.showRoutePopup(info, event, routeDetails.isViewRoute),\n });\n this.map.addLayer(arcLayer);\n }\n }\n\n async removeRouteAndMarker(index: number | string | any) {\n if (this.map) {\n this.map.getLayer(`arc-layer${index}`) ? this.map.removeLayer(`arc-layer${index}`) : '';\n this.map.getLayer(`line${index}`) ? this.map.removeLayer(`line${index}`) : '';\n this.map.getLayer(`custom_layer${index}`) ? this.map.removeLayer(`custom_layer${index}`) : '';\n this.map.getSource(`line${index}`) ? this.map.removeSource(`line${index}`) : '';\n this.map.getLayer(`route-for-job-code${index}`) ? this.map.removeLayer(`route-for-job-code${index}`) : '';\n this.map.getSource(`route-source-for-job-code${index}`) ? this.map.removeSource(`route-source-for-job-code${index}`) : '';\n this.findMarkerBound(index);\n this.markerOriginList[index] ? this.markerOriginList[index].remove() : '';\n this.markerDestinationList[index] ? this.markerDestinationList[index].remove() : '';\n await true;\n }\n }\n findMarkerBound(index: any) {\n const indexOfCordinates = this.originDestinationCordinates.findIndex((x: any) =>\n (x[0][0].toFixed(6) == this.markerOriginList[index]?.getLngLat()?.lng.toFixed(6)) && (x[0][1].toFixed(6) == this.markerOriginList[index]?.getLngLat()?.lat.toFixed(6)));\n if (indexOfCordinates >= 0) { this.originDestinationCordinates.splice(indexOfCordinates, 1) }\n }\n async filterRoute(ID: any, visibility: string, showAllFitbound?: boolean) {\n if (ID) {\n if (this.map.getLayer(`route-for-job-code${ID}`)) {\n this.map.setLayoutProperty(`route-for-job-code${ID}`, 'visibility', visibility);\n const originM = this.markerOriginList[ID].getElement();\n originM.style.display = ((visibility === 'visible') ? 'block' : visibility);\n const destinationM = this.markerDestinationList[ID].getElement();\n destinationM.style.display = ((visibility === 'visible') ? 'block' : visibility);\n if (visibility === 'none' && showAllFitbound) {\n this.findMarkerBound(ID);\n this.extendReBound();\n }\n }\n if (this.map.getLayer(`arc-layer${ID}`)) {\n this.map.setLayoutProperty(`arc-layer${ID}`, 'visibility', visibility);\n }\n }\n await true;\n }\n extendBound(route: any, showAllFitbound: boolean | undefined) {\n return new Promise((resolve, reject) => {\n if (route) {\n if (typeof route === 'string') {\n let path: any = route.split(';');\n path = path.map((ele: string | any) => { return ele = this.formateLatLong(ele) });\n path.forEach((ele: any, index: number) => { if (ele.length === 1) path.splice(index, 1) });\n route = path\n }\n if (route[0][0] && route[0][1] && route[route.length - 1][0] && route[route.length - 1][1]) {\n this.originDestinationCordinates.push(route);\n route.map((item: any) => {\n this.bounds.extend(item);\n })\n }\n }\n if (showAllFitbound) {\n const padding = { top: this.padding.top + this.customTopForCustomer, bottom: (this.padding.bottom + (this.windowActualHeightWidth.availHeight - (window.innerHeight - 65))), left: this.padding.left, right: this.padding.right }\n setTimeout(() => {\n if (showAllFitbound && (Object.keys(this.bounds).length > 0)) this.map.fitBounds(this.bounds, {padding, pitch: 65}, { fitboundComplete: true })\n }, 100);\n this.map.once('moveend', (event: any) => { if (event.fitboundComplete) { resolve(true) } });\n }\n });\n }\n\n extendReBound(bottom?: number) {\n return new Promise((resolve, reject) => {\n this.bounds = new mapboxgl.LngLatBounds();\n\n if (this.originDestinationCordinates.length >= 0) {\n this.originDestinationCordinates.map((item: any, index: number) => {\n item.map((route: any) => {\n this.bounds.extend(route);\n })\n if (index === (this.originDestinationCordinates.length - 1)) {\n const padding = { top: this.padding.top + this.customTopForCustomer, bottom: (this.padding.bottom + (this.windowActualHeightWidth.availHeight - (window.innerHeight - 65))), left: this.padding.left, right: this.padding.right }\n setTimeout(() => {\n if (this.originDestinationCordinates.length > 0) this.map.fitBounds(this.bounds, { padding, pitch: 65 });\n }, 500);\n resolve(true);\n }\n })\n } else {\n resolve(true);\n }\n })\n }\n plotRoute(route: any, i: number | any, type: string, enablefitbound?: boolean, showAllFitbound?: boolean) {\n return new Promise((resolve, reject) => {\n let param: any = {};\n if (['jobcode'].includes(type)) {\n param['job'] = route['job_id']\n this.utils.postDataWithRestUrl('schedule/job/path', param).subscribe((res: any) => {\n if (res['data']['route']) {\n let path = res['data']['route'].split(';');\n path = path.map((ele: string | any) => { return ele = this.formateLatLong(ele) });\n path.forEach((ele: any, index: number) => { if (ele.length === 1) path.splice(index, 1) });\n route['path'] = path;\n this.extendBound(route['path'], showAllFitbound);\n if (route['path'] && route['path'].length > 0) this.drawLine(route['path'], i, route, enablefitbound, type);\n route['index'] = i;\n } else {\n this.extendBound(null, showAllFitbound);\n }\n resolve(true);\n }, (err) => { if (err) { reject(false) } });\n } else if (['jobrouteList', 'addroute'].includes(type)) {\n if (route['path'] && route['path'].length > 0) {\n let path = route['path'].split(';');\n path = path.map((ele: string | any) => { return ele = this.formateLatLong(ele) });\n path.forEach((ele: any, index: number) => { if (ele.length === 1) path.splice(index, 1) });\n this.extendBound(path, showAllFitbound);\n this.drawLine(path, i, route, enablefitbound, type)\n };\n }\n })\n }\n clearBound() { this.bounds = new mapboxgl.LngLatBounds(); this.originDestinationCordinates = []; this.clearPadding(); }\n formateLatLong(latlong: string) { return latlong ? latlong.split(',').map(x => +x).reverse() : null; }\n clearBoundWithCordinates() {\n this.bounds = new mapboxgl.LngLatBounds(); this.originDestinationCordinates = [];\n }\n\n onResize(event: any) {\n if (!this.bounds.isEmpty()) {\n this.windowActualHeightWidth.availHeight = (window.innerHeight > window.screen.availHeight) ? window.innerHeight : window.screen.availHeight;\n setTimeout(() => {\n this.map.fitBounds(this.bounds, { padding: { top: this.padding.top + this.customTopForCustomer, bottom: this.padding.bottom + (this.windowActualHeightWidth.availHeight - (event.target.innerHeight - 65)), left: this.padding.left, right: this.padding.right }, pitch: 65 });\n }, 500);\n }\n }\n\n setWindowHeight(screen: any) {\n this.windowActualHeightWidth.availHeight = screen;\n }\n setPadding(padding: any) { this.padding = padding }\n clearPadding() { this.padding = null }\n removeJobFromMap(data: Route[]) {\n data.map((ele: any, index: number) => {\n const id = (ele['job_id'] ? ele['job_id'] : ele['route_id']);\n this.removeRouteAndMarker(id);\n if (index === (data.length - 1)) {\n this.extendReBound();\n }\n })\n }\n}\n","/*\n * Public API Surface of @aggdirect/coolmap-services\n */\nexport * from './lib/service/coolmap.service';\nexport * from './lib/service/utils.service';\nexport * from './lib/service/data-model';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aggdirect/coolmap-services",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^17.0.8",
|
|
6
|
+
"@angular/core": "^17.0.8"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"tslib": "^2.3.0"
|
|
@@ -24,11 +24,7 @@
|
|
|
24
24
|
"keywords": [
|
|
25
25
|
"Coolmap-service"
|
|
26
26
|
],
|
|
27
|
-
"module": "
|
|
28
|
-
"es2020": "fesm2020/aggdirect-coolmap-services.mjs",
|
|
29
|
-
"esm2020": "esm2020/aggdirect-coolmap-services.mjs",
|
|
30
|
-
"fesm2020": "fesm2020/aggdirect-coolmap-services.mjs",
|
|
31
|
-
"fesm2015": "fesm2015/aggdirect-coolmap-services.mjs",
|
|
27
|
+
"module": "fesm2022/aggdirect-coolmap-services.mjs",
|
|
32
28
|
"typings": "index.d.ts",
|
|
33
29
|
"exports": {
|
|
34
30
|
"./package.json": {
|
|
@@ -36,11 +32,9 @@
|
|
|
36
32
|
},
|
|
37
33
|
".": {
|
|
38
34
|
"types": "./index.d.ts",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"node": "./fesm2015/aggdirect-coolmap-services.mjs",
|
|
43
|
-
"default": "./fesm2020/aggdirect-coolmap-services.mjs"
|
|
35
|
+
"esm2022": "./esm2022/aggdirect-coolmap-services.mjs",
|
|
36
|
+
"esm": "./esm2022/aggdirect-coolmap-services.mjs",
|
|
37
|
+
"default": "./fesm2022/aggdirect-coolmap-services.mjs"
|
|
44
38
|
}
|
|
45
39
|
},
|
|
46
40
|
"sideEffects": false,
|
|
@@ -49,5 +43,13 @@
|
|
|
49
43
|
},
|
|
50
44
|
"scripts": {
|
|
51
45
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
52
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/bulldog-dev/npm-packages.git"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/bulldog-dev/npm-packages/issues"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/bulldog-dev/npm-packages#readme"
|
|
53
55
|
}
|