mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 19:47:57 +01:00
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
/*
|
|
* Copyright [2021] [wisemapping]
|
|
*
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the license at
|
|
*
|
|
* http://www.wisemapping.org/license
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import { $assert } from '@wisemapping/core-js';
|
|
import { Image, Point } from '@wisemapping/web2d';
|
|
import IconGroup from './IconGroup';
|
|
import SizeType from './SizeType';
|
|
import FeatureModel from './model/FeatureModel';
|
|
|
|
abstract class Icon {
|
|
protected _image: Image;
|
|
|
|
protected _group: IconGroup;
|
|
|
|
constructor(url: string) {
|
|
$assert(url, 'topic can not be null');
|
|
this._image = new Image();
|
|
this._image.setHref(url);
|
|
this._image.setSize(Icon.SIZE, Icon.SIZE);
|
|
}
|
|
|
|
getImage(): Image {
|
|
return this._image;
|
|
}
|
|
|
|
setGroup(group: IconGroup) {
|
|
this._group = group;
|
|
}
|
|
|
|
getGroup(): IconGroup {
|
|
return this._group;
|
|
}
|
|
|
|
getSize(): SizeType {
|
|
return this._image.getSize();
|
|
}
|
|
|
|
getPosition(): Point {
|
|
return this._image.getPosition();
|
|
}
|
|
|
|
addEvent(type: string, fnc): void {
|
|
this._image.addEvent(type, fnc);
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
remove() {
|
|
throw new Error('Unsupported operation');
|
|
}
|
|
|
|
abstract getModel(): FeatureModel;
|
|
|
|
static SIZE = 90;
|
|
}
|
|
|
|
export default Icon;
|