cellsysBase/cellsysPolygon.js

96 lines
2.6 KiB
JavaScript
Raw Normal View History

2024-08-14 16:20:56 +08:00
/*
* @Author: ag
* @LastEditTime: 2021-11-02 18:06:24
* @LastEditors: ag
* @Description:
*/
import { CellsysType } from './cellsysUtil.js'
import { CellsysPolygonStyle } from './cellsysStyle'
import CellsysElement from './cellsysElement.js'
import {hexColorToRgba} from "@/utils/utils";
class CellsysPolygon extends CellsysElement {
constructor(params) {
if (!params) {
params = {}
}
super(params)
this.cellsysType = CellsysType.Polygon
this.id = params.id
this.name = params.name
this.type = params.type
this.status = params.status ? params.status : 1
this.action = params.action||0
this.bufferDistance = params.buffer_distance || 0
this.geometry = params.geometry
this.typeName = params.type_name
this.orgId = params.org_id
this.orgName = params.org_name
this.description = params.description
this.style = new CellsysPolygonStyle(params.style)
}
setId(value) {
this.id = value
}
setName(name) {
this.name = name
}
setType(type) {
this.type = type
}
setAction(value) {
this.action = value
}
setBufferDistance(value) {
this.bufferDistance = value
}
setDescription(value) {
this.description = value
}
setGeometry(value) {
this.geometry = value
}
getColor() {
return this.style ? this.style.color : '#000000'
}
getFillColor() {
return this.style ? this.style.fillColor : null
}
getCssStyle() {
// return formatterPolygonStyle(this.style)
if (this.style) {
let strokeOpacity = this.style.strokeOpacity;
strokeOpacity = strokeOpacity === null || strokeOpacity === undefined ? 0 : strokeOpacity;
let colors = hexColorToRgba(this.style.strokeColor || '#000000');
colors.push(strokeOpacity);
let border = this.style.weight + 'px ' + 'solid rgba(' + colors.join(',') + ')';
let fillOpacity = this.style.fillOpacity;
fillOpacity = fillOpacity === null || fillOpacity === undefined ? 0 : fillOpacity;
let colors2 = hexColorToRgba(this.style.fillColor || '#000000');
colors2.push(fillOpacity);
let backgroundColor = 'rgba(' + colors2.join(',') + ')';
return {
border: border,
'background-color': backgroundColor,
cursor: 'text',
};
}
return null;
}
}
export default CellsysPolygon