
WEB
前端
qq_39472036
这个作者很懒,什么都没留下…
展开
-
Word(一)
注意事项:原创 2021-06-08 22:13:50 · 103 阅读 · 0 评论 -
PPT(一)
注意事项:原创 2021-06-08 22:43:30 · 92 阅读 · 0 评论 -
js获取当前时间
1. let date = new Date(); let seperator1 = "-"; let seperator2 = ":"; let month = date.getMonth() + 1<10? "0"+(date.getMonth() + 1):date.getMonth() + 1; let strDate = date.getDate()&...原创 2020-04-01 14:34:09 · 107 阅读 · 0 评论 -
搭建一个vue项目
一、安装node环境 1、下载地址为:https://nodejs.org/en/ 2、检查是否安装成功:如果输出版本号,说明我们安装node环境成功 3、为了提高我们的效率,可以使用淘宝的镜像:http://npm.taobao.org/ 输入:npm install -g cnpm –registry=https://registry.npm.taobao.or...转载 2020-03-30 19:08:27 · 169 阅读 · 0 评论 -
vue 子组件传值给父组件
子: this.$emit('closeTable',false); 父: <dataTable @closeTable="close"></dataTable> methods:{ close(value){ this.closeTable=value; } }, ...原创 2020-04-09 14:16:17 · 74 阅读 · 0 评论 -
mapbox注意事项
1.mapbox 只支持web 墨卡托(3857)坐标系的数据。原创 2021-03-20 20:43:02 · 224 阅读 · 0 评论 -
openlayers注意事项
1.坐标系 openlayers支持'EPSG:4326'和'EPSG:3857'坐标系。默认的坐标是google的墨卡托投影:‘EPSG:3857’。原创 2021-03-20 20:39:48 · 138 阅读 · 0 评论 -
Cesium坐标系
一、坐标系简介 1.WGS84坐标系(坐标原点在椭球的质心) 经度:参考椭球面上某点的大地子午面与本初子午面间的两面角。东正西负。 纬度 :参考椭球面上某点的法线与赤道平面的夹角。北正南负。 2.笛卡尔空间直角坐标系 Cartesian3(坐标原点在椭球的中心) new Cesium.Cartesian3(x, y, z) 二、坐标系之间的转换 ...原创 2021-03-20 20:49:00 · 135 阅读 · 0 评论