|
@@ -131,14 +131,16 @@ export const useMapStore = defineStore('mapStore', () => {
|
|
|
const allShowNoPoint = currentAllPointList.value.filter((item) => {
|
|
|
return item?.x && item?.y && item?.ty == '无轨迹';
|
|
|
});
|
|
|
- addPoint(allShowHasPoint, 'hasPointView', {
|
|
|
- color: 'rgba(0, 128, 255, 0.4)',
|
|
|
- borderColor: 'rgba(0, 128, 255, 0.6)'
|
|
|
- });
|
|
|
- addPoint(allShowNoPoint, 'noPointView', {
|
|
|
- color: 'rgba(255, 127, 0, 0.4)',
|
|
|
- borderColor: 'rgba(255, 127, 0, 0.6)'
|
|
|
- });
|
|
|
+ allShowHasPoint?.length > 0 &&
|
|
|
+ addPoint(allShowHasPoint, 'hasPointView', {
|
|
|
+ color: 'rgba(0, 128, 255, 0.4)',
|
|
|
+ borderColor: 'rgba(0, 128, 255, 0.6)'
|
|
|
+ });
|
|
|
+ allShowNoPoint?.length > 0 &&
|
|
|
+ addPoint(allShowNoPoint, 'noPointView', {
|
|
|
+ color: 'rgba(255, 127, 0, 0.4)',
|
|
|
+ borderColor: 'rgba(255, 127, 0, 0.6)'
|
|
|
+ });
|
|
|
//无轨迹点
|
|
|
break;
|
|
|
}
|