摘要: draw() { this.view.container .querySelector(".esri-view-root > .esri-view-surface") .setAttribute("data-cursor", "crosshair");//设置鼠标的样式变为十字架 let graph 阅读全文
posted @ 2021-05-26 17:19 maycpou 阅读(398) 评论(0) 推荐(0) 编辑
摘要: class Person{ public: static int Num; int Age; std::string Name; Person(int age,std::string name):Age(age),Name(name){ } }; 其中static int Num;为Person定义 阅读全文
posted @ 2021-05-26 12:01 maycpou 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1.派生来要调用基类的构造方法来为基类中的成员赋值 尽管在派生类中我们可以直接访问基类的公共成员(public)和受保护的成员(protected),但是我们不要直接给基类中的成员赋值,最好是调用基类的构造方法让他自己给自己的成员赋值,如: class Person{ public: int Age 阅读全文
posted @ 2021-05-26 11:21 maycpou 阅读(549) 评论(0) 推荐(0) 编辑
摘要: Arcgisapi for js中提供了一个BasemapToggle专门用于底图的切换。 mounted() { loadArcgisApiForJs().then((esriModules) => {//esriload加载Arcgisapi for js模块 this.esriModules  阅读全文
posted @ 2021-05-26 10:29 maycpou 阅读(707) 评论(0) 推荐(0) 编辑