Code Monkey home page Code Monkey logo

supermap-iearth's People

Contributors

chenfei23 avatar heqianhq avatar liqiujun avatar pasu avatar refineiks25 avatar shuidibeida avatar supermap123 avatar supermapliukaiyun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

supermap-iearth's Issues

添加图层时报错

添加图层时报错

Uncaught TypeError: Cannot read property 'serviceProxy' of undefined

项目:SuperMap-iEarth-iportal-branch-v2-1100
刚下载的项目使用原生添加图层中的自定义服务里面进行添加S3M图层时报上面这个错;

公开地理数据来源从哪里获取?

作为国内唯一一家GIS龙头企业。能不能出一个数据来源的专题,
比如:各时期影像图,矢量图。本来就是网上公开的数据何必那么封锁。

鼠标在刚进入页面是点击开源地球视图,鼠标处于一直按下状态;

程序运行起来刚进入页面在地球视图上会先是一个手掌的鼠标,之前可以持续点击和拖动地球,现在在页面视图上点击一次手掌鼠标就一直成拳头形状,不能在进行点击和拖动了,并且浏览器页面放小地球就会变形不会自动自适应大小;
http://ask.supermap.com/?qa=blob&qa_blobid=8091442420094129259
这是变形图片:
http://ask.supermap.com/?qa=blob&qa_blobid=10957923977175826343

这是什么问题???

@ispeco/authentication-sdk: Not found

铁军们,我该如何fix啊?

error Error: https://registry.npmmirror.com/@ispeco%2fauthentication-sdk: Not found

P.S.: 虽然有人提了,但是你们就是不移除这个依赖项是吧!那我再提提,免得你们忘记,坑了许多大兄弟。

剖面分析

剖面分析我通过BIM进行选中分析发现echarts图标数据基本上无比bianh
image

vue编写动态绘制只能绘制一次,点击其他图形绘制报错

第一次点击一个图形可以进行绘制,但是当你第二次点击其他图形绘制时就会报错???

一、当第二次点击其他图形绘制时,就会报以下错:
VM32937:1 Uncaught ReferenceError: RuntimeError is not defined at Tl.add (eval at <anonymous> (Cesium.js:1), <anonymous>:1:3881794) at Plotting.InitPlot (plotting.js?159d:26) at new Plotting (plotting.js?159d:15) at o.imageClick (index.vue?0dbc:234) at click (index.vue?f684:31) at i (vue.min.js:6) at HTMLImageElement.Rr.t._withTask.o._withTask (vue.min.js:6)
二、这是vue页面调用plotting.js文件实现的:
method:{ // 绘制面板 imageClick(val) { var plotting = new Plotting(window.viewer); if (plotting) { plotting.DrawCellClick(val); } }, }

三、这是我提取出来的文件和开源集成的:
`class Plotting {
constructor(viewer) {
this.viewer = viewer;
this.host = 'http://support.supermap.com.cn:8090';
this.cesium = Cesium;
this.scene = viewer.scene;
this.scene.globe.depthTestAgainstTerrain = false;
this.serverUrl = this.host + '/iserver/services/plot-jingyong/rest/plot';
this.plotting;
this.plottingLayer;
this.plotEditControl;
this.plotDrawControl;
this.plotPanel;
this.stylePanel;
this.InitPlot();
}
InitPlot() {
var self = this;
if (!this.viewer) {
return;
}
self.plottingLayer = new self.cesium.PlottingLayer(
self.scene,
'plottingLayer',
);
self.scene.plotLayers.add(self.plottingLayer);

self.plotEditControl = new self.cesium.PlotEditControl(
  self.scene,
  self.plottingLayer,
); //编辑控件
self.plotDrawControl = new self.cesium.PlotDrawControl(
  self.scene,
  self.plottingLayer,
); //绘制控件 

self.plotDrawControl.drawControlEndEvent.addEventListener(()=>{
  //标绘结束,激活编辑控件

  self.plotEditControl.activate();
});

self.plotting = self.cesium.Plotting.getInstance(
  self.serverUrl,
  self.scene,
);
//标绘面板
// initPlotPanel("plotPanel", serverUrl, plotDrawControl, plotEditControl, plotting);
// 属性面板
// self.stylePanel = new StylePanel(
//   'stylePanel',
//   self.plotEditControl,
//   self.plotting,
// );

}
DrawCellClick(drawCellparam) {
console.log(drawCellparam,'drawcell');
console.log(this.plotDrawControl,'plotDraw');
var self = this;
if (self.plotDrawControl !== null) {
self.plotDrawControl.deactivate();
self.plotDrawControl.libID = drawCellparam.libID;
self.plotDrawControl.code = drawCellparam.symbolCode;

  //设置标号默认的模型路径
  self.plotDrawControl.drawFinishEvent.addEventListener(function (geo) {
    if (geo.symbolType === SuperMap.Plot.SymbolType.DOTSYMBOL) {
      geo.modelPath = './SampleData/plot/Cesium_Air.gltf';
      geo.picturePath = './SampleData/plot/blupin.png';
    }
  });
  self.plotDrawControl.serverUrl = self.serverUrl;

  self.plotDrawControl.activate();
  if (undefined !== self.plotEditControl) {
    self.plotEditControl.deactivate();
  }
}

}
//删除指定标号
deleteSeleGeo() {
var self = this;
self.plottingLayer.removeGeoGraphicObject(
self.plottingLayer.selectedFeature,
);
}
//获取属性面板GridDom
getGridDomObdect() {
var self = this;
return self.stylePanel.getDomObject();
}

// // 想要通过该方法来暴露x
// showX () {
// return this.x
// }
}
export default Plotting;
`

在主页面点击一下鼠标不回弹,不能在次点击和拖拽

程序运行刚起来进入页面在地球视图上会先是一个手掌的鼠标,然后可以持续点击和观察地球,现在在页面视图上点击一次手指鼠标就成拳头形象,不能在进行点击和观察了,并且浏览器放小地球会变形不会自动尺寸大小;
http://ask.supermap.com/?qa=blob&qa_blobid=8091442420094129259
这是变形图片:
http://ask.supermap.com/?qa =blob&qa_blobid=10957923977175826343

这是什么问题???

怎么用Github吗?

默认认为这个是超图官方的了,如果不是当我没说过。
发现一个很难受的事请?
一个项目,放上来,难道不是为了让大家交流吗?写这个的时候项目还没有下载完成。没看到src

wiki没有就算了, .md 也 没有,真是醉了。
基本说明。
帮助文档。
部署方案。
一个历史比阿里还悠久的公司!
对比阿里系的开源项目,差的不是技术,是态度。

还是说学不动了????

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.