在屏幕中心显示定位点

let position = this.map.getCenter();
				this.$ownerInstance.callMethod('savePoint', { // 调用 Vue 组件中的方法
					position
				});
				//转换屏幕坐标
				var pixel = this.map.lngLatToContainer(position);
				this.$ownerInstance.callMethod('saveMap', { // 调用 Vue 组件中的方法
					pixel
				});




//在页面中 pixel 这个就是返回的坐标  

		 

你可能感兴趣的:(在屏幕中心显示定位点)