Skip to content

Commit 1151fb7

Browse files
committed
【fix】CommonKnowledgeGraphService
1 parent efd4552 commit 1151fb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/leaflet/services/KnowledgeGraphService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
44
import { ServiceBase } from './ServiceBase';
55
import '../core/Base';
6-
import { KnowledgeGraphService as CommonMatchAddressService } from '@supermap/iclient-common/iServer/KnowledgeGraphService';
6+
import { KnowledgeGraphService as CommonKnowledgeGraphService } from '@supermap/iclient-common/iServer/KnowledgeGraphService';
77
/**
88
* @class KnowledgeGraphService
99
* @category iServer KnowledgeGraph
@@ -26,7 +26,7 @@ import { KnowledgeGraphService as CommonMatchAddressService } from '@supermap/ic
2626
export var KnowledgeGraphService = ServiceBase.extend({
2727
initialize: function (url, options) {
2828
ServiceBase.prototype.initialize.call(this, url, options);
29-
this._knowledgeGraphService = new CommonMatchAddressService(this.url, options);
29+
this._knowledgeGraphService = new CommonKnowledgeGraphService(this.url, options);
3030
},
3131

3232
/**

0 commit comments

Comments
 (0)