Samples_Event explorer_watch properties注释解读研究

2024-02-24 17:38

本文主要是介绍Samples_Event explorer_watch properties注释解读研究,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这个例子可以学习事件和属性,挺有意思的,故格了这个程序一个礼拜了,大概明白了一点,全端出来共享一下了

<html><head><meta charset="utf-8" /><meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /><title>Event explorer / watch properties | Sample | ArcGIS API for JavaScript 4.19</title><link rel="stylesheet" href="https://js.arcgis.com/4.19/esri/themes/light/main.css" /><script src="https://js.arcgis.com/4.19/"></script><script>require(["esri/Map", "esri/views/SceneView"], (Map, SceneView) => {const map = new Map({basemap: "topo-vector",ground: "world-elevation"});const view = new SceneView({container: "viewDiv",map: map,qualityMode: "high",camera: {position: [-101.17, 20.76793656, 12908164.47184],heading: 0.0,tilt: 0.5}});//此处添加了——arr表明这是个数组,下面的属性也是一样const events_arr = ["pointer-enter","pointer-leave","pointer-move","pointer-down","pointer-up","immediate-click","click","immediate-double-click","double-click","mouse-wheel","drag","hold","key-down","key-up","focus","blur","resize"];// for the purpose of the sample, this is only a selection of properties,为了达到演示的目的,这只是属性的一小部分,// but any properties on the View can be watched for 但是任何View的属性均可以被观察被watch for //个人添加了_arr表明这是个数组const properties_arr = ["focused","interacting","updating","resolution","scale","zoom","stationary","camera.position.z","camera.tilt","camera.heading"];// Dynamically create the table of events and properties from the defined array//从预定义好的数组中动态地创建事件表和属性表function createTables() {const eventsTable = document.getElementById("events");//得到右上角的events的元素console.log("get events_node:"+eventsTable);let content = eventsTable.innerHTML;//让内容等于元素的innerHTMLconsole.log("get events_node_innerhtml :"+content);//循环events_arr这个数组,为这个content赋值,每一个事件条目都是div 记住这个。for (let i = 0; i < events_arr.length; i++) {//创建了一个div 元素,class 为 event,id依此为数组中的各个单个值,pointer-enter,pointer-leave......//用这种方式也创建了新的元素,创建了新的元素content += '<div class="event" id="' + events_arr[i] + '">' +"I am "+ events_arr[i];content += "</div>";console.log(i+"of"+events_arr.length+"event is created in the for loops:"+content);}eventsTable.innerHTML = content;//让events元素的innerHTML等于content,不懂为啥又来了这么一句,因为前面有content=eventsTable.innerHTMLconsole.log("after eventTable_innerHTML equal console_content:"+content);//上面是event即事件的区域,下面的是properties即属性的区域const propertiesTable = document.getElementById("properties");console.log("after const propertyTable:"+propertiesTable);//这个content还是上面声明过的那个contentcontent = propertiesTable.innerHTML;console.log("after let content equal propertiesTable_innerHTML:"+content);for (let i = 0; i < properties_arr.length; i++) {//创建了一个div 元素,class为property,id依此为属性数组中的各个单个值,如focused,interacting......//用这种方式也创建了新的元素,创建了新的元素content += '<div class="property" id="' + properties_arr[i] + '">' + "I am "+ properties_arr[i] + " = </div>";console.log(i+"of"+properties_arr.length+"properties is created in the for loops:"+content);}propertiesTable.innerHTML = content;console.log("after property_innerHTML equal console_content:"+content);}//函数:建立Event的监听器,name是某个元素的id,注意:同时它也是一个事件名哦,可以用于xxx.on(name,func)这种情况下的哦。function setupEventListener(view, name) {const eventRow = document.getElementById(name);console.log(eventRow);view.on(name, (value) => {eventRow.className = "event active";//元素的className为:event active ,active之后就变得是实心的字了,inactive的时候是灰色的console.log(name);//往控制台输出这个eventif (eventRow.highlightTimeout) {clearTimeout(eventRow.highlightTimeout);}eventRow.highlightTimeout = setTimeout(() => {// after a timeout of one second disable the highlight//过了timeout的秒数了,就使得高亮不能用eventRow.className = "event inactive";}, 1000);});}function setupPropertiesListener(view, name) {const propertiesRow = document.getElementById(name);view.watch(name, (value) => {propertiesRow.className = "property active";propertiesRow.innerHTML = propertiesRow.innerHTML.substring(0, propertiesRow.innerHTML.indexOf(" = "));console.log(name);//往控制台输出这个property// set the text to the received valueconst formattedValue = typeof value === "number" ? value.toFixed(4) : value;propertiesRow.innerHTML += " = " + formattedValue.toString();if (propertiesRow.highlightTimeout) {clearTimeout(propertiesRow.highlightTimeout);}propertiesRow.highlightTimeout = setTimeout(() => {// after a timeout of one second disable the highlightpropertiesRow.className = "property inactive";}, 1000);});}// create the tables for the events and properties//调用createTables(),创建eventtable和propertytablecreateTables();// Setup all view events defined in the array//为数组中的那些事件来分配响应函数for (let i = 0; i < events_arr.length; i++) {setupEventListener(view, events_arr[i]);}// Setup all watch properties defined in the array//为数组中的那些属性创建响应函数for (let i = 0; i < properties_arr.length; i++) {setupPropertiesListener(view, properties_arr[i]);}});</script><style>html,body {padding: 0;margin: 0;height: 100%;width: 100%;}#viewDiv {position: absolute;left: 0;right: 250px;top: 0;bottom: 0;height: 100%;}#panel {background-color: #f5f5f5;position: absolute;right: 0;height: 100%;width: 250px;font-size: 12px;}.title {font-weight: bold;color: #0079c1;}.container {background-color: white;color: #323232;margin: 10px;padding: 5px;border-bottom: 1px solid rgba(50, 50, 50, 0.25);}.event,.property {transition: background-color 0.5s ease-out;padding-bottom: 2px;opacity: 0.2;}.active {opacity: 1;background-color: #f30909;}.inactive {opacity: 1;background-color: white;}</style></head><body><div id="main"><div id="viewDiv"></div><div id="panel" class="esri-widget"><div id="events" class="container"><aclass="title"href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#events-summary"target="_blank">Class View Events:</a></div><div id="properties" class="container"><aclass="title"href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#properties-summary"target="_blank">Class View Properties:</a></div></div></div></body>
</html>

 

这篇关于Samples_Event explorer_watch properties注释解读研究的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/742845

相关文章

java之Objects.nonNull用法代码解读

《java之Objects.nonNull用法代码解读》:本文主要介绍java之Objects.nonNull用法代码,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录Java之Objects.nonwww.chinasem.cnNull用法代码Objects.nonN

idea中创建新类时自动添加注释的实现

《idea中创建新类时自动添加注释的实现》在每次使用idea创建一个新类时,过了一段时间发现看不懂这个类是用来干嘛的,为了解决这个问题,我们可以设置在创建一个新类时自动添加注释,帮助我们理解这个类的用... 目录前言:详细操作:步骤一:点击上方的 文件(File),点击&nbmyHIgsp;设置(Setti

SpringCloud负载均衡spring-cloud-starter-loadbalancer解读

《SpringCloud负载均衡spring-cloud-starter-loadbalancer解读》:本文主要介绍SpringCloud负载均衡spring-cloud-starter-loa... 目录简述主要特点使用负载均衡算法1. 轮询负载均衡策略(Round Robin)2. 随机负载均衡策略(

解读spring.factories文件配置详情

《解读spring.factories文件配置详情》:本文主要介绍解读spring.factories文件配置详情,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录使用场景作用内部原理机制SPI机制Spring Factories 实现原理用法及配置spring.f

Spring MVC使用视图解析的问题解读

《SpringMVC使用视图解析的问题解读》:本文主要介绍SpringMVC使用视图解析的问题解读,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC使用视图解析1. 会使用视图解析的情况2. 不会使用视图解析的情况总结Spring MVC使用视图

Linux中的进程间通信之匿名管道解读

《Linux中的进程间通信之匿名管道解读》:本文主要介绍Linux中的进程间通信之匿名管道解读,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、基本概念二、管道1、温故知新2、实现方式3、匿名管道(一)管道中的四种情况(二)管道的特性总结一、基本概念我们知道多

Python中的输入输出与注释教程

《Python中的输入输出与注释教程》:本文主要介绍Python中的输入输出与注释教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、print 输出功能1. 基础用法2. 多参数输出3. 格式化输出4. 换行控制二、input 输入功能1. 基础用法2. 类

Linux系统之authconfig命令的使用解读

《Linux系统之authconfig命令的使用解读》authconfig是一个用于配置Linux系统身份验证和账户管理设置的命令行工具,主要用于RedHat系列的Linux发行版,它提供了一系列选项... 目录linux authconfig命令的使用基本语法常用选项示例总结Linux authconfi

解读docker运行时-itd参数是什么意思

《解读docker运行时-itd参数是什么意思》在Docker中,-itd参数组合用于在后台运行一个交互式容器,同时保持标准输入和分配伪终端,这种方式适合需要在后台运行容器并保持交互能力的场景... 目录docker运行时-itd参数是什么意思1. -i(或 --interactive)2. -t(或 --

解读为什么@Autowired在属性上被警告,在setter方法上不被警告问题

《解读为什么@Autowired在属性上被警告,在setter方法上不被警告问题》在Spring开发中,@Autowired注解常用于实现依赖注入,它可以应用于类的属性、构造器或setter方法上,然... 目录1. 为什么 @Autowired 在属性上被警告?1.1 隐式依赖注入1.2 IDE 的警告: