更改了x6群组

This commit is contained in:
zhaofeiyang 2022-08-04 09:00:55 +08:00
parent 25bd5c5560
commit 3c042f042e
1 changed files with 49 additions and 40 deletions

View File

@ -88,9 +88,9 @@ export default {
this.graph.getNodes().forEach((node) => { this.graph.getNodes().forEach((node) => {
let mapPoint = node.store.data.mapPoint let mapPoint = node.store.data.mapPoint
// //
var lnglat = new TMap.LatLng(mapPoint.lat,mapPoint.lng) var lnglat = new TMap.LatLng(mapPoint.lat, mapPoint.lng)
var pixel = this.map.projectToContainer(lnglat); var pixel = this.map.projectToContainer(lnglat);
let x6postion=this.graph.pageToLocal(pixel.round().x, pixel.round().y) let x6postion = this.graph.pageToLocal(pixel.round().x, pixel.round().y)
node.position(x6postion.x, x6postion.y); node.position(x6postion.x, x6postion.y);
}) })
@ -211,8 +211,8 @@ export default {
center: new TMap.LatLng(39.984104, 116.307503),// center: new TMap.LatLng(39.984104, 116.307503),//
keyboardShortcuts: false, // keyboardShortcuts: false, //
scrollwheel: false, scrollwheel: false,
scrollable:false, scrollable: false,
doubleClickZoom:false doubleClickZoom: false
}); });
var mapContainer = document.getElementById('container'); var mapContainer = document.getElementById('container');
var x6 = document.getElementsByClassName("x6-content"); var x6 = document.getElementsByClassName("x6-content");
@ -265,8 +265,7 @@ export default {
}) })
this.map = map; this.map = map;
this.map.on('pan', (e) => { this.map.on('pan', (e) => {
this.onRender(); this.onRender();
// console.log(this.dataNodes);
}); });
this.map.on('dragend', (e) => { this.map.on('dragend', (e) => {
@ -492,8 +491,18 @@ this.onRender();
// this.pixelToPoint(args.node, args.node.store.data.position) // this.pixelToPoint(args.node, args.node.store.data.position)
}) })
this.graph.on('node:mouseup', (args) => { this.graph.on('node:mouseup', (args) => {
const container = this.$refs.container
const ports = container.querySelectorAll(
'.x6-port-body',
)
console.log(ports);
this.graph.getNodes().forEach((node) => {
//let mapPoint = node.store.data.mapPoint
this.pixelToPoint(node, node.store.data.position)
})
// //
this.pixelToPoint(args.node, args.node.store.data.position) //this.pixelToPoint(args.node, args.node.store.data.position)
}) })
// //
// this.graph.on('translate', ({ tx, ty }) => { // this.graph.on('translate', ({ tx, ty }) => {
@ -745,9 +754,9 @@ this.onRender();
pixelToPoint(node, position) { pixelToPoint(node, position) {
//x6 //x6
console.log(position); console.log(position);
let pmpostion=this.graph.localToPage(position.x, position.y); let pmpostion = this.graph.localToPage(position.x, position.y);
console.log(pmpostion); console.log(pmpostion);
let ePoint =this.map.unprojectFromContainer({x:pmpostion.x, y:pmpostion.y}); let ePoint = this.map.unprojectFromContainer({ x: pmpostion.x, y: pmpostion.y });
console.log(ePoint) console.log(ePoint)
//let ePoint = this.map.containerToLngLat(new AMap.Pixel(position.x, position.y)) //let ePoint = this.map.containerToLngLat(new AMap.Pixel(position.x, position.y))
//node //node