// npm 패키지
@antv/l7-map
L7 Map
버전
460
메인테이너
51
라이선스
MIT
최초 publish
2020-07-28
publisher
lzxue
tarball
809,626 B
AUTO-PUBLISHED·1개 버전 인덱싱됨·최근 publish: 2026-05-11
// publisher 캠페인by lzxue
이 계정에서 catch된 패키지 9건고립된 catch가 아닙니다. 동일 publisher가 8개의 다른 패키지를 추가로 발행했고, 모두 파이프라인이 catch했습니다 — 일회성이 아닌 조직적 캠페인의 형태. 아래 링크는 각 형제 catch의 분석으로 이동합니다.
// offending code· @2.25.10· 1 file flagged
llm: benign · 0.85→ 의심 전송지 없음, 원격 실행 형태 없음 — 1 known-vendor host(s), 1 other host(s).
- @2.25.10··AUTO-PUBLISHED·publisher: lzxueheuristic 75/100static flags 1llm benign (0.85) via ollamamature-packageosv-flagged:MAL-2026-4043public-github-push
→ 의심 전송지 없음, 원격 실행 형태 없음 — 1 known-vendor host(s), 1 other host(s).
// offending code· 1 file flaggedpatterns: 1
--- package/package.json (excerpt) --- { "name": "@antv/l7-map", "version": "2.25.10", "description": "L7 Map", "keywords": [], "homepage": "https://github.com/antvis/L7#readme", "bugs": { "url": "https://github.com/antvis/L7/issues" }, "repository": { "type": "git", "url": "git+https://github.com/antvis/L7.git" }, "license": "MIT", "author": "https://github.com/orgs/antvis/people", "sideEffects": true, "main": "lib/index.js", "module": "es/index.js", "types": "es/index.d.ts", "files": [ "lib", "es" ], "dependencies": { "@babel/runtime": "^7.7.7", "@mapbox/point-geometry": "^0.1.0", "@mapbox/unitbezier": "^0.0.1", "eventemitter3": "^4.0.4", "gl-matrix": "^3.1.0", "@antv/l7-utils": "2.25.10" }, "devDependencies": { "@types/mapbox__point-geometry": "^0.1.4" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "scripts": { "dev": "father dev", "build": "npm run clean && father build", "check-deps": "father doctor", "lint": "eslint src __tests__", "clean": "rimraf dist es lib" } } --- package.json (entry) --- { "name": "@antv/l7-map", "version": "2.25.10", "description": "L7 Map", "keywords": [], "homepage": "https://github.com/antvis/L7#readme", "bugs": { "url": "https://github.com/antvis/L7/issues" }, "repository": { "type": "git", "url": "git+https://github.com/antvis/L7.git" }, "license": "MIT", "author": "https://github.com/orgs/antvis/people", "sideEffects": true, "main": "lib/index.js", "module": "es/index.js", "types": "es/index.d.ts", "files": [ "lib", "es" ], "dependencies": { "@babel/runtime": "^7.7.7", "@mapbox/point-geometry": "^0.1.0", "@mapbox/unitbezier": "^0.0.1", "eventemitter3": "^4.0.4", "gl-matrix": "^3.1.0", "@antv/l7-utils": "2.25.10" }, "devDependencies": { "@types/mapbox__point-geometry": "^0.1.4" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "scripts": { "dev": "father dev", "build": "npm run clean && father build", "check-deps": "father doctor", "lint": "eslint src __tests__", "clean": "rimraf dist es lib" } } --- index.js (entry) --- "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "Map", { enumerable: true, get: function () { return _map.Map; } }); Object.defineProperty(exports, "MapMouseEvent", { enumerable: true, get: function () { return _events.MapMouseEvent; } }); Object.defineProperty(exports, "MercatorCoordinate", { enumerable: true, get: function () { return _mercator_coordinate.MercatorCoordinate; } }); Object.defineProperty(exports, "SimpleMapCoord", { enumerable: true, get: function () { return _simpleMapCoord.SimpleMapCoord; } }); var _events = require("./map/events"); var _mercator_coordinate = require("./map/geo/mercator_coordinate"); var _map = require("./map/map"); var _simpleMapCoord = require("./map/util/simpleMapCoord"); --- bundled output (OSV-MAL flagged — LLM scope expansion) --- --- lib/map/handler/transform-provider.js (bundled) --- "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.TransformProvider = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _pointGeometry = _interopRequireDefault(require("@mapbox/point-geometry")); /** * @internal * Shared utilities for the Handler classes to access the correct camera state. * If Camera.transformCameraUpdate is specified, the "desired state" of camera may differ from the state used for rendering. * The handlers need the "desired state" to track accumulated changes. */ class TransformProvider { constructor(map) { (0, _defineProperty2.default)(this, "_map", void 0); this._map = map; } get transform() { return this._map._requestedCameraState || this._map.transform; } get center() { return { lng: this.transform.center.lng, lat: this.transform.center.lat }; } get zoom() { return this.transform.zoom; } get pitch() { return this.transform.pitch; } get bearing() { return this.transform.bearing; } unproject(point) { return this.transform.pointLocation(_pointGeometry.default.convert(point)); } } exports.TransformProvider = TransformProvider; --- es/map/handler/transform-provider.js (bundled) --- import _defineProperty from "@babel/runtime/helpers/esm/defineProperty"; import Point from '@mapbox/point-geometry'; /** * @internal * Shared utilities for the Handler classes to access the correct camera state. * If Camera.transformCameraUpdate is specified, the "desired state" of camera may differ from the state used for rendering. * The handlers need the "desired state" to track accumulated changes. */ export class TransformProvider { constructor(map) { _defineProperty(this, "_map", void 0); this._map = map; } get transform() { return this._map._requestedCameraState || this._map.transform; } get center() { return { lng: this.transform.center.lng, lat: this.transform.center.lat }; } get zoom() { return this.transform.zoom; } get pitch() { return this.transform.pitch; } get bearing() { return this.transform.bearing; } unproject(point) { return this.transform.pointLocation(Point.convert(point)); } }
