|  | @@ -650,27 +650,17 @@ export default {
 | 
											
												
													
														|  |                let urlNew = obj.url + ".json";
 |  |                let urlNew = obj.url + ".json";
 | 
											
												
													
														|  |                let resNew = await axios.get(urlNew);
 |  |                let resNew = await axios.get(urlNew);
 | 
											
												
													
														|  |                let serCode = resNew.data.prjCoordSys.epsgCode;
 |  |                let serCode = resNew.data.prjCoordSys.epsgCode;
 | 
											
												
													
														|  | -              // if (serCode == 3857) {
 |  | 
 | 
											
												
													
														|  | -              //   let c = that.cartesianToCartographic84(
 |  | 
 | 
											
												
													
														|  | -              //     e.features[u].geometry.points[0].x,
 |  | 
 | 
											
												
													
														|  | -              //     e.features[u].geometry.points[0].y
 |  | 
 | 
											
												
													
														|  | -              //   );
 |  | 
 | 
											
												
													
														|  | -              // }
 |  | 
 | 
											
												
													
														|  |                let points = [];
 |  |                let points = [];
 | 
											
												
													
														|  |                for (let y = 0; y < e.features[u].geometry.points.length; y++) {
 |  |                for (let y = 0; y < e.features[u].geometry.points.length; y++) {
 | 
											
												
													
														|  |                  let c  = {}
 |  |                  let c  = {}
 | 
											
												
													
														|  |                  if (serCode == 3857) {
 |  |                  if (serCode == 3857) {
 | 
											
												
													
														|  |                    c = that.cartesianToCartographic84(
 |  |                    c = that.cartesianToCartographic84(
 | 
											
												
													
														|  | -                    e.features[u].geometry.points[0].x,
 |  | 
 | 
											
												
													
														|  | -                    e.features[u].geometry.points[0].y
 |  | 
 | 
											
												
													
														|  | 
 |  | +                    e.features[u].geometry.points[y].x,
 | 
											
												
													
														|  | 
 |  | +                    e.features[u].geometry.points[y].y
 | 
											
												
													
														|  |                    );
 |  |                    );
 | 
											
												
													
														|  |                  } else {
 |  |                  } else {
 | 
											
												
													
														|  |                     c = e.features[u].geometry.points[y];
 |  |                     c = e.features[u].geometry.points[y];
 | 
											
												
													
														|  |                  }
 |  |                  }
 | 
											
												
													
														|  | -                // let c = that.cartesianToCartographic84(
 |  | 
 | 
											
												
													
														|  | -                //   e.features[u].geometry.points[y].x,
 |  | 
 | 
											
												
													
														|  | -                //   e.features[u].geometry.points[y].y
 |  | 
 | 
											
												
													
														|  | -                // );
 |  | 
 | 
											
												
													
														|  |                  points.push([c.x, c.y]);
 |  |                  points.push([c.x, c.y]);
 | 
											
												
													
														|  |                }
 |  |                }
 | 
											
												
													
														|  |                parts.push(e.features[u].geometry.parts);
 |  |                parts.push(e.features[u].geometry.parts);
 |