This commit is contained in:
thinkinggis 2020-02-09 21:06:46 +08:00
parent 92f8ba3b85
commit e0e4096d79
293 changed files with 679 additions and 584 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -63929,7 +63929,13 @@ function () {
return this.layers;
};
_proto.getLayer = function getLayer(name) {
_proto.getLayer = function getLayer(id) {
return this.layers.find(function (layer) {
return layer.id === id;
});
};
_proto.getLayerByName = function getLayerByName(name) {
return this.layers.find(function (layer) {
return layer.name === name;
});
@ -66397,7 +66403,7 @@ function (_BaseNormalPass) {
if (pickedColors[0] !== 0 || pickedColors[1] !== 0 || pickedColors[2] !== 0) {
_this.logger.debug('picked');
var pickedFeatureIdx = Object(src["f" /* decodePickingColor */])(pickedColors);
var pickedFeatureIdx = Object(src["g" /* decodePickingColor */])(pickedColors);
var rawFeature = _this.layer.getSource().getFeatureById(pickedFeatureIdx);
@ -66587,13 +66593,13 @@ function (_BaseNormalPass) {
_proto.selectFeatureHander = function selectFeatureHander(_ref2) {
var featureId = _ref2.featureId;
var pickedColors = Object(src["g" /* encodePickingColor */])(featureId);
var pickedColors = Object(src["h" /* encodePickingColor */])(featureId);
this.selectFeature(new Uint8Array(pickedColors));
};
_proto.highlightFeatureHander = function highlightFeatureHander(_ref3) {
var featureId = _ref3.featureId;
var pickedColors = Object(src["g" /* encodePickingColor */])(featureId);
var pickedColors = Object(src["h" /* encodePickingColor */])(featureId);
this.highlightPickedFeature(new Uint8Array(pickedColors));
};
@ -68096,7 +68102,7 @@ function loadData(data, done) {
var imageDatas = [];
if (typeof url === 'string') {
Object(_antv_l7_utils__WEBPACK_IMPORTED_MODULE_2__[/* getImage */ "j"])({
Object(_antv_l7_utils__WEBPACK_IMPORTED_MODULE_2__[/* getImage */ "k"])({
url: url
}, function (err, img) {
imageDatas.push(img);
@ -68106,7 +68112,7 @@ function loadData(data, done) {
var imageCount = url.length;
var imageindex = 0;
url.forEach(function (item) {
Object(_antv_l7_utils__WEBPACK_IMPORTED_MODULE_2__[/* getImage */ "j"])({
Object(_antv_l7_utils__WEBPACK_IMPORTED_MODULE_2__[/* getImage */ "k"])({
url: item
}, function (err, img) {
imageindex++;
@ -115192,7 +115198,7 @@ function (_Control) {
var y = mapsService.getSize()[1] / 2;
var p1 = mapsService.containerToLngLat([0, y]);
var p2 = mapsService.containerToLngLat([maxWidth, y]);
var maxMeters = Object(utils_src["l" /* lnglatDistance */])([p1.lng, p1.lat], [p2.lng, p2.lat]);
var maxMeters = Object(utils_src["m" /* lnglatDistance */])([p1.lng, p1.lat], [p2.lng, p2.lat]);
this.updateScales(maxMeters);
};
@ -115805,9 +115811,9 @@ function (_EventEmitter) {
if (this.markerLayerOption.cluster) {
this.initCluster();
this.update();
this.mapsService.on('zoom', this.update);
this.mapsService.on('zoomchange', this.update);
this.update(); // 地图视野变化时,重新计算视野内的聚合点。
this.mapsService.on('camerachange', this.update);
}
this.addMarkers();
@ -115850,8 +115856,7 @@ function (_EventEmitter) {
this.markers.forEach(function (marker) {
marker.remove();
});
this.mapsService.off('zoom', this.update);
this.mapsService.off('zoomchange', this.update);
this.mapsService.off('camerachange', this.update);
this.markers = [];
};
@ -115896,10 +115901,11 @@ function (_EventEmitter) {
this.clusterIndex.load(this.points);
};
_proto.getClusterMarker = function getClusterMarker(zoom) {
_proto.getClusterMarker = function getClusterMarker(viewBounds, zoom) {
var _this3 = this;
var clusterPoint = this.clusterIndex.getClusters([-180, -85, 180, 85], zoom);
var viewBBox = viewBounds[0].concat(viewBounds[1]);
var clusterPoint = this.clusterIndex.getClusters(viewBBox, zoom);
this.clusterMarkers.forEach(function (marker) {
marker.remove();
});
@ -115928,14 +115934,11 @@ function (_EventEmitter) {
var column = utils_src["c" /* Satistics */].getColumn(columnData, field);
var stat = utils_src["c" /* Satistics */].getSatByColumn(method, column);
var fieldName = 'point_' + method;
feature.properties[fieldName] = stat;
feature.properties[fieldName] = stat.toFixed(2);
}
}
var marker = _this3.clusterMarker(feature); // feature.properties && feature.properties.hasOwnProperty('point_count')
// ? this.clusterMarker(feature)
// : this.normalMarker(feature);
var marker = _this3.clusterMarker(feature);
_this3.clusterMarkers.push(marker);
@ -115980,10 +115983,12 @@ function (_EventEmitter) {
_proto.update = function update() {
var zoom = this.mapsService.getZoom();
var bbox = this.mapsService.getBounds();
if (Math.abs(zoom - this.zoom) > 1) {
this.getClusterMarker(Math.floor(zoom));
if (!this.bbox || Math.abs(zoom - this.zoom) >= 1 || !Object(utils_src["f" /* boundsContains */])(this.bbox, bbox)) {
this.bbox = Object(utils_src["n" /* padBounds */])(bbox, 0.5);
this.zoom = Math.floor(zoom);
this.getClusterMarker(this.bbox, this.zoom);
}
};
@ -115996,14 +116001,7 @@ function (_EventEmitter) {
method = _this$markerLayerOpti2.method;
feature.properties.point_count = feature.properties.point_count || 1;
var text = field && method ? feature.properties['point_' + method] || feature.properties[field] : feature.properties.point_count;
span.textContent = text; // const elStyle = isFunction(style)
// ? style(feature.properties.point_count)
// : style;
// Object.keys(elStyle).forEach((key: string) => {
// // @ts-ignore
// el.style[key] = elStyle[key];
// });
span.textContent = text;
return el;
};
@ -119360,7 +119358,7 @@ function (_EventEmitter) {
var sourceParser = Object(source_src["getParser"])(type);
this.data = sourceParser(this.originData, parser); // 计算范围
this.extent = Object(src["h" /* extent */])(this.data.dataArray);
this.extent = Object(src["i" /* extent */])(this.data.dataArray);
}
/**
* 数据统计
@ -135727,7 +135725,7 @@ module.exports = function (it) {
/***/ "YLt+":
/***/ (function(module) {
module.exports = JSON.parse("[{\"fromPath\":\"/zh/docs/tutorial\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/docs/tutorial/quickstart\"},{\"fromPath\":\"/en/docs/tutorial\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/docs/tutorial/quickstart\"},{\"fromPath\":\"/en/docs/api\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/docs/api/l7\"},{\"fromPath\":\"/zh/docs/api\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/docs/api/l7\"},{\"fromPath\":\"/en/examples\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/examples/gallery\"},{\"fromPath\":\"/zh/examples\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/examples/gallery\"},{\"fromPath\":\"/zh/examples/polygon/\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/examples/polygon/3d\"}]");
module.exports = JSON.parse("[{\"fromPath\":\"/en/docs/tutorial\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/docs/tutorial/quickstart\"},{\"fromPath\":\"/zh/docs/tutorial\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/docs/tutorial/quickstart\"},{\"fromPath\":\"/en/docs/api\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/docs/api/l7\"},{\"fromPath\":\"/zh/docs/api\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/docs/api/l7\"},{\"fromPath\":\"/en/examples\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/en/examples/gallery\"},{\"fromPath\":\"/zh/examples\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/examples/gallery\"},{\"fromPath\":\"/zh/examples/polygon/\",\"isPermanent\":true,\"redirectInBrowser\":true,\"toPath\":\"/zh/examples/polygon/3d\"}]");
/***/ }),
@ -228369,6 +228367,20 @@ function project(lnglat) {
var y = earthRadius * Math.log((1 + sin) / (1 - sin)) / 2;
return [x, y];
}
function padBounds(b, bufferRatio) {
var heightBuffer = Math.abs(b[1][1] - b[0][1]) * bufferRatio;
var widthBuffer = Math.abs(b[1][0] - b[0][0]) * bufferRatio;
return [[b[0][0] - widthBuffer, b[0][1] - heightBuffer], [b[1][0] + widthBuffer, b[1][1] + heightBuffer]];
}
/**
* b1 包含 b2 返回 true 否则false
* @param b1 bounds1
* @param b2 bounds2
*/
function boundsContains(b1, b2) {
return b1[0][0] <= b2[0][0] && b1[0][1] <= b2[0][1] && b1[1][0] >= b2[1][0] && b1[1][1] >= b2[1][1];
}
// EXTERNAL MODULE: ./node_modules/gatsby/node_modules/core-js/modules/es6.array.find-index.js
var es6_array_find_index = __webpack_require__("zTTH");
@ -228635,24 +228647,26 @@ function getSatByColumn(type, column) {
/* unused concated harmony import BKDRHash */
/* unused concated harmony import getJSON */
/* unused concated harmony import getArrayBuffer */
/* concated harmony reexport getImage */__webpack_require__.d(__webpack_exports__, "j", function() { return getImage; });
/* concated harmony reexport extent */__webpack_require__.d(__webpack_exports__, "h", function() { return extent; });
/* concated harmony reexport getImage */__webpack_require__.d(__webpack_exports__, "k", function() { return getImage; });
/* concated harmony reexport extent */__webpack_require__.d(__webpack_exports__, "i", function() { return extent; });
/* unused concated harmony import tranfrormCoord */
/* concated harmony reexport lngLatToMeters */__webpack_require__.d(__webpack_exports__, "k", function() { return lngLatToMeters; });
/* concated harmony reexport lngLatToMeters */__webpack_require__.d(__webpack_exports__, "l", function() { return lngLatToMeters; });
/* unused concated harmony import metersToLngLat */
/* unused concated harmony import longitude */
/* unused concated harmony import latitude */
/* unused concated harmony import validateLngLat */
/* concated harmony reexport aProjectFlat */__webpack_require__.d(__webpack_exports__, "d", function() { return aProjectFlat; });
/* unused concated harmony import unProjectFlat */
/* concated harmony reexport lnglatDistance */__webpack_require__.d(__webpack_exports__, "l", function() { return lnglatDistance; });
/* concated harmony reexport lnglatDistance */__webpack_require__.d(__webpack_exports__, "m", function() { return lnglatDistance; });
/* unused concated harmony import project */
/* concated harmony reexport padBounds */__webpack_require__.d(__webpack_exports__, "n", function() { return padBounds; });
/* concated harmony reexport boundsContains */__webpack_require__.d(__webpack_exports__, "f", function() { return boundsContains; });
/* concated harmony reexport LRUCache */__webpack_require__.d(__webpack_exports__, "b", function() { return LRUCache; });
/* concated harmony reexport bindAll */__webpack_require__.d(__webpack_exports__, "e", function() { return bindAll; });
/* concated harmony reexport rgb2arr */__webpack_require__.d(__webpack_exports__, "m", function() { return rgb2arr; });
/* concated harmony reexport decodePickingColor */__webpack_require__.d(__webpack_exports__, "f", function() { return decodePickingColor; });
/* concated harmony reexport encodePickingColor */__webpack_require__.d(__webpack_exports__, "g", function() { return encodePickingColor; });
/* concated harmony reexport generateColorRamp */__webpack_require__.d(__webpack_exports__, "i", function() { return generateColorRamp; });
/* concated harmony reexport rgb2arr */__webpack_require__.d(__webpack_exports__, "o", function() { return rgb2arr; });
/* concated harmony reexport decodePickingColor */__webpack_require__.d(__webpack_exports__, "g", function() { return decodePickingColor; });
/* concated harmony reexport encodePickingColor */__webpack_require__.d(__webpack_exports__, "h", function() { return encodePickingColor; });
/* concated harmony reexport generateColorRamp */__webpack_require__.d(__webpack_exports__, "j", function() { return generateColorRamp; });
/* concated harmony reexport DOM */__webpack_require__.d(__webpack_exports__, "a", function() { return dom_namespaceObject; });
/* concated harmony reexport Satistics */__webpack_require__.d(__webpack_exports__, "c", function() { return statistics_namespaceObject; });
@ -238895,6 +238909,10 @@ function () {
return this.layerService.getLayer(id);
};
_proto.getLayerByName = function getLayerByName(name) {
return this.layerService.getLayerByName(name);
};
_proto.removeLayer = function removeLayer(layer) {
this.layerService.remove(layer);
};
@ -239906,7 +239924,7 @@ function (_EventEmitter) {
pickedFeatureID: id,
highlightColor: Object(lodash["isObject"])(options) ? options.color : this.getLayerConfig().highlightColor
});
this.hooks.beforeSelect.callAsync(Object(utils_src["g" /* encodePickingColor */])(id), function () {
this.hooks.beforeSelect.callAsync(Object(utils_src["h" /* encodePickingColor */])(id), function () {
setTimeout(function () {
_this5.reRender();
}, 1);
@ -239952,7 +239970,7 @@ function (_EventEmitter) {
pickedFeatureID: id,
selectColor: Object(lodash["isObject"])(options) ? options.color : this.getLayerConfig().selectColor
});
this.hooks.beforeSelect.callAsync(Object(utils_src["g" /* encodePickingColor */])(id), function () {
this.hooks.beforeSelect.callAsync(Object(utils_src["h" /* encodePickingColor */])(id), function () {
setTimeout(function () {
_this6.reRender();
}, 1);
@ -240797,9 +240815,9 @@ function computeVertexNormals(p1, p2, p3, needFlat) {
var normal = esm["c" /* vec3 */].create();
if (needFlat) {
p1 = Object(utils_src["k" /* lngLatToMeters */])(p1);
p2 = Object(utils_src["k" /* lngLatToMeters */])(p2);
p3 = Object(utils_src["k" /* lngLatToMeters */])(p3);
p1 = Object(utils_src["l" /* lngLatToMeters */])(p1);
p2 = Object(utils_src["l" /* lngLatToMeters */])(p2);
p3 = Object(utils_src["l" /* lngLatToMeters */])(p3);
}
var pA = esm["c" /* vec3 */].fromValues.apply(esm["c" /* vec3 */], extrude_toConsumableArray(p1));
@ -241130,9 +241148,9 @@ function triangulation_computeVertexNormals(positions, indexArray, dim, needFlat
var p3 = [positions[vC], positions[vC + 1]];
if (needFlat) {
p1 = Object(utils_src["k" /* lngLatToMeters */])(p1);
p2 = Object(utils_src["k" /* lngLatToMeters */])(p2);
p3 = Object(utils_src["k" /* lngLatToMeters */])(p3);
p1 = Object(utils_src["l" /* lngLatToMeters */])(p1);
p2 = Object(utils_src["l" /* lngLatToMeters */])(p2);
p3 = Object(utils_src["l" /* lngLatToMeters */])(p3);
}
var _p = p1,
@ -241232,9 +241250,9 @@ function (_BaseModel) {
return {
u_opacity: opacity,
u_baseColor: Object(utils_src["m" /* rgb2arr */])(baseColor),
u_brightColor: Object(utils_src["m" /* rgb2arr */])(brightColor),
u_windowColor: Object(utils_src["m" /* rgb2arr */])(windowColor),
u_baseColor: Object(utils_src["o" /* rgb2arr */])(baseColor),
u_brightColor: Object(utils_src["o" /* rgb2arr */])(brightColor),
u_windowColor: Object(utils_src["o" /* rgb2arr */])(windowColor),
u_time: this.layer.getLayerAnimateTime()
};
};
@ -241685,7 +241703,7 @@ function (_BaseModel) {
var _ref = this.layer.getLayerConfig(),
rampColors = _ref.rampColors;
var imageData = Object(utils_src["i" /* generateColorRamp */])(rampColors);
var imageData = Object(utils_src["j" /* generateColorRamp */])(rampColors);
var _getViewportSize = getViewportSize(),
width = _getViewportSize.width,
@ -243045,7 +243063,7 @@ function (_BaseModel) {
return {
u_opacity: opacity,
u_stroke_width: strokeWidth,
u_stroke_color: Object(utils_src["m" /* rgb2arr */])(stroke)
u_stroke_color: Object(utils_src["o" /* rgb2arr */])(stroke)
};
};
@ -243343,7 +243361,7 @@ function (_BaseModel) {
return {
u_opacity: opacity,
u_stroke_width: strokeWidth,
u_stroke_color: Object(utils_src["m" /* rgb2arr */])(stroke)
u_stroke_color: Object(utils_src["o" /* rgb2arr */])(stroke)
};
};
@ -244011,7 +244029,7 @@ function (_BaseModel) {
u_opacity: opacity,
u_stroke_opacity: strokeOpacity,
u_sdf_map: this.texture,
u_stroke: Object(utils_src["m" /* rgb2arr */])(stroke),
u_stroke: Object(utils_src["o" /* rgb2arr */])(stroke),
u_halo_blur: 0.5,
u_sdf_map_size: [canvas.width, canvas.height],
u_strokeWidth: strokeWidth
@ -244730,7 +244748,7 @@ function (_BaseModel) {
var _ref2 = this.layer.getLayerConfig(),
rampColors = _ref2.rampColors;
var imageData = Object(utils_src["i" /* generateColorRamp */])(rampColors);
var imageData = Object(utils_src["j" /* generateColorRamp */])(rampColors);
this.colorTexture = createTexture2D({
data: imageData.data,
width: imageData.width,
@ -244777,7 +244795,7 @@ function (_BaseModel) {
var _ref3 = this.layer.getLayerConfig(),
rampColors = _ref3.rampColors;
var imageData = Object(utils_src["i" /* generateColorRamp */])(rampColors);
var imageData = Object(utils_src["j" /* generateColorRamp */])(rampColors);
this.colorTexture = createTexture2D({
data: imageData.data,
width: imageData.width,
@ -245031,7 +245049,7 @@ function () {
if (attribute.name === 'color') {
values = values.map(function (c) {
return Object(utils_src["m" /* rgb2arr */])(c);
return Object(utils_src["o" /* rgb2arr */])(c);
});
} // @ts-ignore
@ -248845,7 +248863,7 @@ function () {
update: function update(feature, featureIdx) {
// 只有开启拾取才需要 encode
var id = feature.id;
return enablePicking ? Object(utils_src["g" /* encodePickingColor */])(id) : [0, 0, 0];
return enablePicking ? Object(utils_src["h" /* encodePickingColor */])(id) : [0, 0, 0];
}
}
});
@ -248881,9 +248899,9 @@ function () {
var _layer$getLayerConfig4 = layer.getLayerConfig(),
highlightColor = _layer$getLayerConfig4.highlightColor;
var highlightColorInArray = typeof highlightColor === 'string' ? Object(utils_src["m" /* rgb2arr */])(highlightColor) : highlightColor || [1, 0, 0, 1];
var highlightColorInArray = typeof highlightColor === 'string' ? Object(utils_src["o" /* rgb2arr */])(highlightColor) : highlightColor || [1, 0, 0, 1];
layer.updateLayerConfig({
pickedFeatureID: Object(utils_src["f" /* decodePickingColor */])(new Uint8Array(pickedColor))
pickedFeatureID: Object(utils_src["g" /* decodePickingColor */])(new Uint8Array(pickedColor))
});
layer.models.forEach(function (model) {
return model.addUniforms({
@ -248899,9 +248917,9 @@ function () {
var _layer$getLayerConfig5 = layer.getLayerConfig(),
selectColor = _layer$getLayerConfig5.selectColor;
var highlightColorInArray = typeof selectColor === 'string' ? Object(utils_src["m" /* rgb2arr */])(selectColor) : selectColor || [1, 0, 0, 1];
var highlightColorInArray = typeof selectColor === 'string' ? Object(utils_src["o" /* rgb2arr */])(selectColor) : selectColor || [1, 0, 0, 1];
layer.updateLayerConfig({
pickedFeatureID: Object(utils_src["f" /* decodePickingColor */])(new Uint8Array(pickedColor))
pickedFeatureID: Object(utils_src["g" /* decodePickingColor */])(new Uint8Array(pickedColor))
});
layer.models.forEach(function (model) {
return model.addUniforms({
@ -262989,4 +263007,4 @@ module.exports = AsyncSeriesHook;
/***/ })
},[["UxWs",2,0]]]);
//# sourceMappingURL=app-6d69c3a71531bd8f2c0c.js.map
//# sourceMappingURL=app-c928c8832e1e2ab0812a.js.map

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"app":["/app-6d69c3a71531bd8f2c0c.js"],"component---node-modules-antv-gatsby-theme-antv-site-templates-document-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-templates-example-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-index-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-404-tsx":[],"component---site-pages-index-en-tsx":[],"component---site-pages-index-zh-tsx":[]}
{"app":["/app-c928c8832e1e2ab0812a.js"],"component---node-modules-antv-gatsby-theme-antv-site-templates-document-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-templates-example-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-index-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-404-tsx":[],"component---site-pages-index-en-tsx":[],"component---site-pages-index-zh-tsx":[]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -51,7 +51,7 @@
}
}
})
</script><link rel="icon" href="/icons/icon-48x48.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="manifest" href="/manifest.webmanifest"/><meta name="theme-color" content="#873bf4"/><link rel="apple-touch-icon" sizes="48x48" href="/icons/icon-48x48.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="96x96" href="/icons/icon-96x96.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="144x144" href="/icons/icon-144x144.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192x192.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="256x256" href="/icons/icon-256x256.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="384x384" href="/icons/icon-384x384.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512x512.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="sitemap" type="application/xml" href="/sitemap.xml"/><link rel="preconnect dns-prefetch" href="https://www.google-analytics.com"/><script src="https://b.alicdn.com/s/polyfill.min.js?features=default,es2015,es2016,es2017,fetch,IntersectionObserver,NodeList.prototype.forEach,NodeList.prototype.@@iterator,EventSource,MutationObserver,ResizeObserver,HTMLCanvasElement.prototype.toBlob"></script><link as="script" rel="preload" href="/webpack-runtime-298d7aafbee90ecdcccb.js"/><link as="script" rel="preload" href="/app-6d69c3a71531bd8f2c0c.js"/><link as="script" rel="preload" href="/styles-0b76c59fffe9a7cfda68.js"/><link as="fetch" rel="preload" href="/page-data/index/page-data.json" crossorigin="anonymous"/></head><body><div id="___gatsby"><div style="outline:none" tabindex="-1" id="gatsby-focus-wrapper"><div class="PageLoading-module--container--1ExE8"><i aria-label="icon: loading" class="anticon anticon-loading PageLoading-module--loading--2e_H_"><svg viewBox="0 0 1024 1024" focusable="false" class="anticon-spin" data-icon="loading" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 0 0-94.3-139.9 437.71 437.71 0 0 0-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"></path></svg></i></div></div></div><script>
</script><link rel="icon" href="/icons/icon-48x48.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="manifest" href="/manifest.webmanifest"/><meta name="theme-color" content="#873bf4"/><link rel="apple-touch-icon" sizes="48x48" href="/icons/icon-48x48.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="96x96" href="/icons/icon-96x96.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="144x144" href="/icons/icon-144x144.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192x192.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="256x256" href="/icons/icon-256x256.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="384x384" href="/icons/icon-384x384.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512x512.png?v=7ad1aa5018360da7cfa0b378dc680577"/><link rel="sitemap" type="application/xml" href="/sitemap.xml"/><link rel="preconnect dns-prefetch" href="https://www.google-analytics.com"/><script src="https://b.alicdn.com/s/polyfill.min.js?features=default,es2015,es2016,es2017,fetch,IntersectionObserver,NodeList.prototype.forEach,NodeList.prototype.@@iterator,EventSource,MutationObserver,ResizeObserver,HTMLCanvasElement.prototype.toBlob"></script><link as="script" rel="preload" href="/webpack-runtime-298d7aafbee90ecdcccb.js"/><link as="script" rel="preload" href="/app-c928c8832e1e2ab0812a.js"/><link as="script" rel="preload" href="/styles-0b76c59fffe9a7cfda68.js"/><link as="fetch" rel="preload" href="/page-data/index/page-data.json" crossorigin="anonymous"/></head><body><div id="___gatsby"><div style="outline:none" tabindex="-1" id="gatsby-focus-wrapper"><div class="PageLoading-module--container--1ExE8"><i aria-label="icon: loading" class="anticon anticon-loading PageLoading-module--loading--2e_H_"><svg viewBox="0 0 1024 1024" focusable="false" class="anticon-spin" data-icon="loading" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 0 0-94.3-139.9 437.71 437.71 0 0 0-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"></path></svg></i></div></div></div><script>
if(true) {
@ -67,4 +67,4 @@
}</script><script id="gatsby-script-loader">/*<![CDATA[*/window.pagePath="/";/*]]>*/</script><script id="gatsby-chunk-mapping">/*<![CDATA[*/window.___chunkMapping={"app":["/app-6d69c3a71531bd8f2c0c.js"],"component---node-modules-antv-gatsby-theme-antv-site-templates-document-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-templates-example-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-index-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-404-tsx":[],"component---site-pages-index-en-tsx":[],"component---site-pages-index-zh-tsx":[]};/*]]>*/</script><script src="/styles-0b76c59fffe9a7cfda68.js" async=""></script><script src="/app-6d69c3a71531bd8f2c0c.js" async=""></script><script src="/webpack-runtime-298d7aafbee90ecdcccb.js" async=""></script></body></html>
}</script><script id="gatsby-script-loader">/*<![CDATA[*/window.pagePath="/";/*]]>*/</script><script id="gatsby-chunk-mapping">/*<![CDATA[*/window.___chunkMapping={"app":["/app-c928c8832e1e2ab0812a.js"],"component---node-modules-antv-gatsby-theme-antv-site-templates-document-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-templates-example-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-index-tsx":[],"component---node-modules-antv-gatsby-theme-antv-site-pages-404-tsx":[],"component---site-pages-index-en-tsx":[],"component---site-pages-index-zh-tsx":[]};/*]]>*/</script><script src="/styles-0b76c59fffe9a7cfda68.js" async=""></script><script src="/app-c928c8832e1e2ab0812a.js" async=""></script><script src="/webpack-runtime-298d7aafbee90ecdcccb.js" async=""></script></body></html>

View File

@ -1 +1 @@
{"webpackCompilationHash":"63086f534eeedf0f8882"}
{"webpackCompilationHash":"95e886f772615f461524"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More