摘要: /** * Crate wall geometry * * @param {Cartesian3[]} positions * @param {number} height * @returns {Geometry} */ function createWallGeometry(positions, 阅读全文
posted @ 2024-01-02 09:12 zhh 阅读(18) 评论(0) 推荐(0) 编辑
摘要: import { Request, TerrainData, Rectangle } from 'cesium'; import * as turf from '@turf/turf'; import { Feature, Polygon } from '@turf/turf'; const MAX 阅读全文
posted @ 2023-08-29 16:34 zhh 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Redis Server监控数据采集 ping,info all, slowlog get/len/reset/cluster info/config get Redis存活监控 redis-cli -h [ip] -p [port] -a [pwd] redis存活监控 (redis_alive) 阅读全文
posted @ 2023-04-26 10:25 zhh 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 官方示例:Cesium Sandcastlehttps://sandcastle.cesium.com/?src=Corridor.html&label=Geometries <template> <div style="height: 100vh"> <div id="cesiumContaine 阅读全文
posted @ 2023-03-27 16:48 zhh 阅读(66) 评论(0) 推荐(0) 编辑
摘要: entity的闪烁主要是通过回调函数CallbackProperty,控制样式改变或是否显示 1. 点的闪烁 function f2(){ var x=1; var flog=true; viewer.entities.add({ name:"圆点point闪烁", position:Cesium. 阅读全文
posted @ 2023-03-27 15:14 zhh 阅读(297) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="initial-scale=1, maxi 阅读全文
posted @ 2022-07-16 10:20 zhh 阅读(19) 评论(0) 推荐(0) 编辑
摘要: casclient源代码下载链接:https://github.com/apereo/java-cas-client cas官网链接:https://www.apereo.org/projects/cas 1.上面一篇引用别人的分析方案介绍,来描述了下项目中遇到的问题,现在介绍本人怎么解决的 2.本 阅读全文
posted @ 2022-05-13 16:48 zhh 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 当我们CAS Server准备好后,就要处理Client接入的问题,如果我们的Client服务是单机模式那没有任何问题,一旦放到集群环境下就会发生如下有意思的事情。 我前面说了CAS在授权回调时会做几件事,第一TG保存到Cookie,第二个保存ticketid对应的session关系以及sessio 阅读全文
posted @ 2022-05-13 16:44 zhh 阅读(99) 评论(0) 推荐(0) 编辑
摘要: MisfireHandler: Error handling misfires: Couldn't store trigger '218111-TRIGGER' for '218111' job:The job (xx-JOBGROUP.218111) referenced by the trigg 阅读全文
posted @ 2022-04-20 12:54 zhh 阅读(1178) 评论(0) 推荐(0) 编辑
摘要: In 3.x you look for the popups hide event https://developers.arcgis.com/javascript/3/jsapi/popup-amd.html#event-hide In 4.x watchUtils.whenTrue(view.p 阅读全文
posted @ 2022-01-22 10:17 zhh 阅读(459) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /> <title>ArcGIS 4x - Add Imag 阅读全文
posted @ 2021-11-09 15:36 zhh 阅读(50) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta charset = "utf-8" / > <meta name = "viewport" content = "initial-scale=1,maximum-scale=1,user-scalable=no" /> <title> Intro to Map 阅读全文
posted @ 2021-11-09 14:46 zhh 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 三维地理信息可视化系统要求依托于高性能三维图形引擎,并结合地理信息系统技术,生动直观的将图形化数据全面、立体地呈现在用户眼前。实现Google Earth式的地球立体全景展示,依据真实的经纬度信息展示地理位置分布,并结合直观互动的3D可视化交互技术。帮助管理者在面临业务管理需求的快速扩张和业务复杂度 阅读全文
posted @ 2021-11-05 11:39 zhh 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: Learn to get all the dates between the two given dates. We will see the solutions in Java 7, Java 8, and Java 9. 1. LocalDate.datesUntil() – Java 9 Lo 阅读全文
posted @ 2021-11-03 11:25 zhh 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #include "math.h" int GetDayOfYear(int Year,int Month,int Day) { //功能:给定年月日得到此日在一年中的天数,1月1日为第1天,分闰年和平年 //作者:汪帮主 2009-6-6 wzj08@mails.jlu.edu.cn int Da 阅读全文
posted @ 2021-10-31 19:02 zhh 阅读(151) 评论(0) 推荐(0) 编辑