上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: ummary In ArcGIS API for JavaScript 4.x, pop-ups can display content from feature attributes using a mouse hover instead of a mouse click. Procedure T 阅读全文
posted @ 2021-10-09 09:28 zhh 阅读(862) 评论(0) 推荐(0) 编辑
摘要: 修改Tomcat的conf目录下的该文件,对于所有项目生效 修改项目文件夹WEB-INF下的Web.xml,则只对该项目起作用。 本方法支持Tomcat版本为7.0.41及以上。 <filter> <filter-name>CorsFilter</filter-name> <filter-class 阅读全文
posted @ 2021-09-19 10:57 zhh 阅读(742) 评论(0) 推荐(0) 编辑
摘要: var apikey = '584b2fa686f14ba283874318b3b8d6b0'; var basemapURL = "https://api.hkmapservice.gov.hk/osm/xyz/worldimagery/WGS84";var mapEngLBUrl = "http 阅读全文
posted @ 2021-08-05 13:22 zhh 阅读(216) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function () { function checkKey(evt) { var keyID = (evt.charCode) ? evt.charCode : ((evt.which) ? evt.which : evt.keyCode); alert(ke 阅读全文
posted @ 2021-05-20 18:45 zhh 阅读(348) 评论(0) 推荐(0) 编辑
摘要: (72)继承一个类 在(71)的基础上,我们继续。 我们之前声明了一个类add,那么计算时,仅仅只有add显然是不够的。我们还需要minus(减去)。 那么我们重新建一个文件minus,然后把add的内容复制过来,再给他加上减法功能,然后调用minus这个文件(像71那样),声明一个这样的实例? 显 阅读全文
posted @ 2021-03-31 08:37 zhh 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 作用: 封装一个类,然后可以通过调用这个类,来调用其类方法。 优点: ①可以继承其他类的类方法; ②假如我们需要使用一个类的类方法,而这个类依赖于5个插件。如果正常调用的话,我们需要在每个使用这个类的js文件里,调用这5个插件。当我们使用封装时,我们只需要调用这个类即可。而调用这个类的方法很简单。 阅读全文
posted @ 2021-03-31 08:36 zhh 阅读(139) 评论(0) 推荐(0) 编辑
摘要: interface FoobarEntityRepository extends JpaRepository<FoobarEntity, Integer> { Page findFoobarsSpecialQuery(String someParameter, final Pageable page 阅读全文
posted @ 2021-02-28 20:02 zhh 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 大疆智图 terra_osgbs文件布局和标准的osgb文件夹结构不一致,需要进行修改。新建文件夹名为“Data”,智图生成的“block”文件夹拉入“Data”文件夹内,xml文件移至与Data同一目录下 阅读全文
posted @ 2021-02-26 17:01 zhh 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 131格式经过数次修订,目前大多数数据仍未1.0格式,但是显示引擎已经能够解析2.0格式的数据,具体应用可以根据情况使用相应版本的格式,主要是从后面的Reserved中修改为对应版本的大小。保证文件头格式总长度1024个字节。 说明:(老版本文件头长256字节,蓝色字段在老版本中不存在,只在新版本中 阅读全文
posted @ 2021-02-25 17:53 zhh 阅读(899) 评论(0) 推荐(0) 编辑
摘要: 1.简单类型数组 ES6array1.push(...array2) // => don't remove duplication OR[...array1,...array2] // => don't remove duplication OR[...new Set([...array1 ,... 阅读全文
posted @ 2021-02-07 10:23 zhh 阅读(111) 评论(0) 推荐(0) 编辑
摘要: .gradient--0 { --gradient-start: #6DE195; --gradient-start-text: '#6DE195'; --gradient-end: #C4E759; --gradient-end-text: '#C4E759'; } .gradient--1 { 阅读全文
posted @ 2020-11-10 14:05 zhh 阅读(280) 评论(0) 推荐(0) 编辑
摘要: var urls_to_load = ["http://url.com","http://url2.com","http://url3.com","http://url4.com"]; var i = 0; function loadIframeAndcheckIfReady(){ var curr 阅读全文
posted @ 2020-11-04 08:15 zhh 阅读(809) 评论(0) 推荐(0) 编辑
摘要: @Query("select e from Employee e") @EntityGraph(value = "graph.Employee.assignments", type = EntityGraph.EntityGraphType.FETCH) List<Employee> findAll 阅读全文
posted @ 2020-08-17 15:20 zhh 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 1.spring mvc filter 所有request 2.用 Interceptor (1)Implement HandlerInterceptor interface and add a @Component annotation to your class (2) Configure yo 阅读全文
posted @ 2019-10-11 09:33 zhh 阅读(205) 评论(0) 推荐(0) 编辑
摘要: var font = new Font("12pt"); font.setFamily("Arial"); font.setWeight(Font.WEIGHT_BOLD); font.setDecoration("none"); font.setStyle(Font.STYLE_NORMAL); var symbol = new TextSymbol(this.textInput.va... 阅读全文
posted @ 2019-08-28 16:32 zhh 阅读(915) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页