You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
3.3 KiB
168 lines
3.3 KiB
import VectorLayer from "ol/layer/Vector";
|
|
import VectorSource from "ol/source/Vector";
|
|
import Draw from 'ol/interaction/Draw';
|
|
import {
|
|
Fill,
|
|
Stroke,
|
|
Style,
|
|
Text as TextStyle
|
|
} from "ol/style";
|
|
import CircleStyle from "ol/style/Circle";
|
|
import {
|
|
getArea,
|
|
getLength
|
|
} from 'ol/sphere.js';
|
|
import {
|
|
LineString
|
|
} from "ol/geom";
|
|
|
|
|
|
const serverUrl = 'https://app.hycdyzt.com';
|
|
const geoserverUrl = 'http://47.109.60.82:8080';
|
|
const mgServerUrl = 'http://47.109.60.82:9989/openApi'
|
|
const globalMap = {
|
|
map: null
|
|
}
|
|
const formatArea = function(polygon) {
|
|
const area = getArea(polygon, {
|
|
projection: 'EPSG:4326'
|
|
});
|
|
let output;
|
|
if (area > 10000) {
|
|
output = Math.round((area / 1000000) * 100) / 100 + ' ' + 'k㎡';
|
|
} else {
|
|
output = Math.round(area * 100) / 100 + ' ' + '㎡';
|
|
}
|
|
return output;
|
|
};
|
|
const formatLength = function(line) {
|
|
const length = getLength(line, {
|
|
projection: 'EPSG:4326'
|
|
});
|
|
let output;
|
|
if (length > 100) {
|
|
output = Math.round((length / 1000) * 100) / 100 + ' ' + 'km';
|
|
} else {
|
|
output = Math.round(length * 100) / 100 + ' ' + 'm';
|
|
}
|
|
return output;
|
|
};
|
|
|
|
const generateStyle = (feature, {
|
|
fillOpt,
|
|
strokeOpt
|
|
}) => {
|
|
let area = 0;
|
|
const geom = feature.getGeometry();
|
|
let lineStyle;
|
|
if (geom.getType() === 'Polygon') {
|
|
area = formatArea(geom);
|
|
const lineString = new LineString(geom.getCoordinates()[0]);
|
|
const length = formatLength(lineString);
|
|
lineStyle = new Style({
|
|
geometry: lineString,
|
|
text: new TextStyle({
|
|
text: length,
|
|
"textBaseline": "middle",
|
|
"font": "bold 10px/1 Verdana",
|
|
"offsetX": 0,
|
|
"offsetY": 0,
|
|
fill: new Fill({
|
|
color: 'rgba(255, 255, 255, 1)',
|
|
}),
|
|
stroke: new Stroke({
|
|
width: 2,
|
|
color: 'rgba(0, 0, 0, 1)',
|
|
}),
|
|
"placement": "line",
|
|
"maxAngle": 0.7853981633974483,
|
|
"overflow": true,
|
|
"rotation": 0
|
|
})
|
|
})
|
|
}
|
|
return [new Style({
|
|
fill: new Fill({
|
|
...fillOpt
|
|
}),
|
|
stroke: new Stroke({
|
|
width: 2,
|
|
...strokeOpt
|
|
}),
|
|
text: geom.getType() !== 'Polygon' ? undefined : new TextStyle({
|
|
text: area,
|
|
"textBaseline": "middle",
|
|
"font": "bold 10px/1 Verdana",
|
|
"offsetX": 0,
|
|
"offsetY": 0,
|
|
fill: new Fill({
|
|
color: 'rgba(0, 0, 0, 0.9)',
|
|
}),
|
|
"placement": "point",
|
|
"maxAngle": 0.7853981633974483,
|
|
"overflow": true,
|
|
"rotation": 0
|
|
})
|
|
}), lineStyle].filter(item => item);
|
|
}
|
|
|
|
const startMeasure = (map, callback) => {
|
|
map.removeLayer(map.getAllLayers().find(l => l.get('id') === 'draw-layer'));
|
|
const source = new VectorSource();
|
|
|
|
const vector = new VectorLayer({
|
|
id: 'draw-layer',
|
|
source: source,
|
|
style: feature => {
|
|
return generateStyle(feature, {
|
|
fillOpt: {
|
|
color: 'rgba(255, 255, 255, 0.4)',
|
|
},
|
|
strokeOpt: {
|
|
color: '#ffcc33',
|
|
width: 2,
|
|
}
|
|
})
|
|
}
|
|
|
|
});
|
|
|
|
const draw = new Draw({
|
|
source: source,
|
|
type: 'Polygon',
|
|
stopClick: true,
|
|
freehand: true,
|
|
style: function(feature) {
|
|
return generateStyle(feature, {
|
|
fillOpt: {
|
|
color: 'rgba(255, 255, 255, 0.2)',
|
|
},
|
|
strokeOpt: {
|
|
color: 'rgba(0, 0, 0, 0.5)',
|
|
lineDash: [10, 10],
|
|
width: 2,
|
|
}
|
|
})
|
|
},
|
|
});
|
|
map.addInteraction(draw);
|
|
|
|
draw.on('drawend', function() {
|
|
map.addLayer(vector)
|
|
map.removeInteraction(draw);
|
|
callback();
|
|
});
|
|
}
|
|
|
|
export default {
|
|
serverUrl,
|
|
geoserverUrl,
|
|
globalMap,
|
|
mgServerUrl,
|
|
startMeasure,
|
|
tempToken: '',
|
|
formatArea,
|
|
formatLength,
|
|
generateStyle,
|
|
tempUserInfo: ''
|
|
} |