kwikid-agent-dashboard 0.0.22 → 0.0.23
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/bundles/kwikid-agent-dashboard.umd.js +6 -1
- package/bundles/kwikid-agent-dashboard.umd.js.map +1 -1
- package/esm2015/lib/services/agent.service.js +4 -1
- package/esm2015/lib/services/map.service.js +4 -2
- package/fesm2015/kwikid-agent-dashboard.js +6 -1
- package/fesm2015/kwikid-agent-dashboard.js.map +1 -1
- package/lib/services/agent.service.d.ts +3 -0
- package/package.json +3 -3
|
@@ -581,6 +581,9 @@
|
|
|
581
581
|
},
|
|
582
582
|
steps: {
|
|
583
583
|
hidden: true
|
|
584
|
+
},
|
|
585
|
+
logo: {
|
|
586
|
+
hidden: true
|
|
584
587
|
}
|
|
585
588
|
},
|
|
586
589
|
footer: {
|
|
@@ -645,7 +648,9 @@
|
|
|
645
648
|
var lat = _g.lat, lng = _g.lng, title = _g.title, color = _g.color;
|
|
646
649
|
L__namespace.marker([lat, lng], {
|
|
647
650
|
icon: L__namespace.icon({
|
|
648
|
-
iconUrl: color == 'red'
|
|
651
|
+
iconUrl: color == 'red'
|
|
652
|
+
? 'https://kwikid.s3.ap-south-1.amazonaws.com/CONFIG/USER/assets/map-marker-0.png'
|
|
653
|
+
: 'https://kwikid.s3.ap-south-1.amazonaws.com/CONFIG/USER/assets/map-marker-1.png'
|
|
649
654
|
})
|
|
650
655
|
})
|
|
651
656
|
.addTo(this.map)
|