@vtx/cs-map 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/assets/bz.png +0 -0
- package/lib/assets/ll.png +0 -0
- package/lib/assets/sw.png +0 -0
- package/lib/assets/yl.png +0 -0
- package/lib/map/material/PolylineTrailLinkMaterialProperty.js +1 -1
- package/lib/map/material/PolylineTrailLinkMaterialProperty.js.map +1 -1
- package/lib/map/material/PolylineTrailMaterialProperty.js +1 -1
- package/lib/map/material/PolylineTrailMaterialProperty.js.map +1 -1
- package/lib/map/material/assets/colors1.png +0 -0
- package/lib/map/material/assets/colors2.png +0 -0
- package/package.json +2 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _cesium = require("cesium");
|
|
8
|
-
var _colors = _interopRequireDefault(require("./
|
|
8
|
+
var _colors = _interopRequireDefault(require("./assets/colors1.png"));
|
|
9
9
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
10
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
11
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PolylineTrailLinkMaterialProperty.js","names":["_cesium","require","_colors","_interopRequireDefault","obj","__esModule","_typeof","o","Symbol","iterator","constructor","prototype","_classCallCheck","instance","Constructor","TypeError","_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","_toPropertyKey","key","_createClass","protoProps","staticProps","arg","_toPrimitive","String","input","hint","prim","toPrimitive","undefined","res","call","Number","PolylineTrailLinkMaterialProperty","option","arguments","_definitionChanged","Event","_color","_colorSubscription","color","Color","duration","image","img","_time","Date","getTime","type","source","addMaterial","value","getType","getValue","time","result","_result","defined","Property","getValueOrClonedDefault","WHITE","trailImage","equals","other","_this","Material","_materialCache","fabric","uniforms","translucent","defineProperties","isConstant","get","definitionChanged","createPropertyDescriptor","_default","exports"],"sources":["map/material/PolylineTrailLinkMaterialProperty.js"],"sourcesContent":["import {Event, Color, Property, createPropertyDescriptor, Material, defined} from 'cesium';\nimport img from './
|
|
1
|
+
{"version":3,"file":"PolylineTrailLinkMaterialProperty.js","names":["_cesium","require","_colors","_interopRequireDefault","obj","__esModule","_typeof","o","Symbol","iterator","constructor","prototype","_classCallCheck","instance","Constructor","TypeError","_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","_toPropertyKey","key","_createClass","protoProps","staticProps","arg","_toPrimitive","String","input","hint","prim","toPrimitive","undefined","res","call","Number","PolylineTrailLinkMaterialProperty","option","arguments","_definitionChanged","Event","_color","_colorSubscription","color","Color","duration","image","img","_time","Date","getTime","type","source","addMaterial","value","getType","getValue","time","result","_result","defined","Property","getValueOrClonedDefault","WHITE","trailImage","equals","other","_this","Material","_materialCache","fabric","uniforms","translucent","defineProperties","isConstant","get","definitionChanged","createPropertyDescriptor","_default","exports"],"sources":["map/material/PolylineTrailLinkMaterialProperty.js"],"sourcesContent":["import {Event, Color, Property, createPropertyDescriptor, Material, defined} from 'cesium';\nimport img from './assets/colors1.png';\n\nclass PolylineTrailLinkMaterialProperty {\n constructor(option = {}) {\n this._definitionChanged = new Event();\n this._color = undefined;\n this._colorSubscription = undefined;\n this.color = option.color ? option.color : new Color(0.0, 0.0, 1.0, 0.5);\n this.duration = option.duration ? option.duration : 5000;\n this.image = option.image ? option.image : img;\n this._time = new Date().getTime();\n // 类型(会自动加载到 cesium 中)\n this.type = option.type ? option.type : 'PolylineTrailLink';\n\n // 着色器\n this.source = option.source\n ? option.source\n : `\n czm_material czm_getMaterial(czm_materialInput materialInput)\n {\n czm_material material = czm_getDefaultMaterial(materialInput);\n vec2 st = materialInput.st;\n vec4 colorImage = texture2D(image, vec2(fract(st.s - time), st.t));\n material.alpha = colorImage.a;\n material.diffuse = colorImage.rgb;\n return material;\n }\n `;\n\n this.addMaterial();\n }\n\n getType() {\n return 'PolylineTrailLink';\n }\n\n getValue(time, result) {\n let _result = result;\n if (!defined(_result)) {\n _result = {};\n }\n\n _result.color = Property.getValueOrClonedDefault(\n this._color,\n time,\n Color.WHITE,\n _result.color,\n );\n _result.image = this.trailImage;\n _result.time = ((new Date().getTime() - this._time) % this.duration) / this.duration;\n\n return _result;\n }\n\n equals(other) {\n return (\n this === other ||\n (other instanceof PolylineTrailLinkMaterialProperty &&\n Property.equals(this._color, other._color))\n );\n }\n\n addMaterial() {\n Material._materialCache.addMaterial(this.type, {\n fabric: {\n type: this.type,\n uniforms: {\n color: new Color(0.0, 0.0, 1.0, 0.5),\n image: this.image,\n time: 100,\n },\n source: this.source,\n },\n\n translucent: () => {\n return true;\n },\n });\n\n // 注意 defineProperties 会报错,需要改为 Object\n Object.defineProperties(PolylineTrailLinkMaterialProperty.prototype, {\n isConstant: {\n get: () => {\n return false;\n },\n configurable: true,\n },\n definitionChanged: {\n get: () => {\n return this._definitionChanged;\n },\n configurable: true,\n },\n color: {\n value: createPropertyDescriptor('color'),\n configurable: true,\n writable: true,\n },\n });\n }\n}\n\nexport default PolylineTrailLinkMaterialProperty;\n"],"mappings":"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"}
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _cesium = require("cesium");
|
|
8
|
-
var _colors = _interopRequireDefault(require("./
|
|
8
|
+
var _colors = _interopRequireDefault(require("./assets/colors2.png"));
|
|
9
9
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
10
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
11
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PolylineTrailMaterialProperty.js","names":["_cesium","require","_colors","_interopRequireDefault","obj","__esModule","_typeof","o","Symbol","iterator","constructor","prototype","_classCallCheck","instance","Constructor","TypeError","_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","_toPropertyKey","key","_createClass","protoProps","staticProps","arg","_toPrimitive","String","input","hint","prim","toPrimitive","undefined","res","call","Number","PolylineTrailMaterialProperty","option","arguments","_definitionChanged","Event","_color","_colorSubscription","_time","Date","getTime","color","Color","fromCssColorString","duration","trailImage","img","type","source","addMaterial","value","getType","getValue","time","result","_result","defined","Property","getValueOrClonedDefault","WHITE","image","equals","other","_this","Material","_materialCache","fabric","uniforms","translucent","defineProperties","isConstant","get","definitionChanged","createPropertyDescriptor","_default","exports"],"sources":["map/material/PolylineTrailMaterialProperty.js"],"sourcesContent":["import {Event, Color, Property, createPropertyDescriptor, Material, defined} from 'cesium';\nimport img from './
|
|
1
|
+
{"version":3,"file":"PolylineTrailMaterialProperty.js","names":["_cesium","require","_colors","_interopRequireDefault","obj","__esModule","_typeof","o","Symbol","iterator","constructor","prototype","_classCallCheck","instance","Constructor","TypeError","_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","_toPropertyKey","key","_createClass","protoProps","staticProps","arg","_toPrimitive","String","input","hint","prim","toPrimitive","undefined","res","call","Number","PolylineTrailMaterialProperty","option","arguments","_definitionChanged","Event","_color","_colorSubscription","_time","Date","getTime","color","Color","fromCssColorString","duration","trailImage","img","type","source","addMaterial","value","getType","getValue","time","result","_result","defined","Property","getValueOrClonedDefault","WHITE","image","equals","other","_this","Material","_materialCache","fabric","uniforms","translucent","defineProperties","isConstant","get","definitionChanged","createPropertyDescriptor","_default","exports"],"sources":["map/material/PolylineTrailMaterialProperty.js"],"sourcesContent":["import {Event, Color, Property, createPropertyDescriptor, Material, defined} from 'cesium';\nimport img from './assets/colors2.png';\n\nclass PolylineTrailMaterialProperty {\n constructor(option = {}) {\n this._definitionChanged = new Event();\n this._color = undefined;\n this._colorSubscription = undefined;\n this._time = new Date().getTime();\n\n this.color = option.color\n ? option.color\n : Color.fromCssColorString('rgba(90, 90, 255, 1)');\n this.duration = option.duration ? option.duration : 5000;\n this.trailImage = option.trailImage ? option.trailImage : img;\n\n // 类型(会自动加载到 cesium 中)\n this.type = option.type ? option.type : 'PolylineTrail';\n\n // 着色器\n this.source = option.source\n ? option.source\n : `\n czm_material czm_getMaterial(czm_materialInput materialInput)\n {\n czm_material material = czm_getDefaultMaterial(materialInput);\n vec2 st = materialInput.st;\n vec4 colorImage = texture2D(image, vec2(fract(st.s - time), st.t));\n material.alpha = colorImage.a * color.a;\n material.diffuse = (colorImage.rgb+color.rgb)/2.0;\n return material;\n }\n `;\n this.addMaterial();\n }\n\n getType() {\n return 'PolylineTrail';\n }\n\n getValue(time, result) {\n let _result = result;\n if (!defined(_result)) {\n _result = {};\n }\n\n _result.color = Property.getValueOrClonedDefault(\n this._color,\n time,\n Color.WHITE,\n _result.color,\n );\n _result.image = this.trailImage;\n _result.time = ((new Date().getTime() - this._time) % this.duration) / this.duration;\n\n return _result;\n }\n\n equals(other) {\n return (\n this === other ||\n (other instanceof PolylineTrailMaterialProperty &&\n Property.equals(this._color, other._color))\n );\n }\n\n addMaterial() {\n Material._materialCache.addMaterial(this.type, {\n fabric: {\n type: this.type,\n uniforms: {\n color: new Color(1.0, 0.0, 0.0, 0.5),\n image: this.trailImage,\n time: 100,\n },\n source: this.source,\n },\n\n translucent: () => {\n return true;\n },\n });\n\n // 注意 defineProperties 会报错,需要改为 Object\n Object.defineProperties(PolylineTrailMaterialProperty.prototype, {\n isConstant: {\n get: () => {\n return false;\n },\n configurable: true,\n },\n definitionChanged: {\n get: () => {\n return this._definitionChanged;\n },\n configurable: true,\n },\n color: {\n value: createPropertyDescriptor('color'),\n configurable: true,\n writable: true,\n },\n });\n }\n}\n\nexport default PolylineTrailMaterialProperty;\n"],"mappings":"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"}
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtx/cs-map",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "React components for Vortex",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"gulp-babel": "^8.0.0",
|
|
98
98
|
"gulp-bump": "^3.1.3",
|
|
99
99
|
"gulp-clean": "^0.4.0",
|
|
100
|
+
"gulp-imagemin": "^7.1.0",
|
|
100
101
|
"gulp-less": "5.0.0",
|
|
101
102
|
"gulp-sourcemaps": "^2.6.5",
|
|
102
103
|
"husky": "^4.0.7",
|