Browse Source

[修正] 修正绝对路径错误

上海一张图
陈鹏飞 4 years ago
parent
commit
83051f19d8
  1. 10
      src/modules/map/declare/keda-map.ts
  2. 5
      tsconfig.json

10
src/modules/map/declare/keda-map.ts

@ -1,6 +1,5 @@
import { IMap, IMapOptions, IMarker, IPixel } from './map' import { IMap, IMapOptions, IMarker, IPixel } from './map'
declare var KMap: any; declare var KMap: any;
import $ from 'jquery';
export class KeDaMap implements IMap { export class KeDaMap implements IMap {
self: any; self: any;
@ -9,6 +8,12 @@ export class KeDaMap implements IMap {
opt.configUrl = ""; opt.configUrl = "";
this.self = new KMap(opt); this.self = new KMap(opt);
} }
getZoom() {
throw new Error('Method not implemented.');
}
getCenter() {
throw new Error('Method not implemented.');
}
on(eventName: string, callback: Function): void { on(eventName: string, callback: Function): void {
let eventMapProfile = { let eventMapProfile = {
complete: "load", complete: "load",
@ -32,10 +37,9 @@ export class KeDaPixel implements IPixel {
export class KeDaMarker implements IMarker { export class KeDaMarker implements IMarker {
self: any; self: any;
constructor(options: any) { constructor(options: any) {
let element = $(options.content)[0];
let d = { let d = {
offset: options.offset, offset: options.offset,
element: element element: options.content
}; };

5
tsconfig.json

@ -1,10 +1,7 @@
{ {
"compileOnSave": false, "compileOnSave": false,
"compilerOptions": { "compilerOptions": {
"baseUrl": "./src/", "baseUrl": "./",
"paths": {
"@app/*": ["app/*"],
},
"outDir": "./dist/out-tsc", "outDir": "./dist/out-tsc",
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,

Loading…
Cancel
Save