rt-graphic-component/components/Platform/BeiJingPlatform.js

18 lines
419 B
JavaScript
Raw Normal View History

2024-01-02 14:36:10 +08:00
import { BeiJingConsts } from './PlatformConfig.js';
import { JlPlatform } from './JlPlatform.js';
class BeiJingPlatform extends JlPlatform {
constructor(categoryType) {
super(categoryType);
}
get states() {
return this.getStates();
}
doRepaint() {
this.rectGraphic.stateFillColor = BeiJingConsts.noTrainStop;
super.doRepaint();
}
}
export { BeiJingPlatform };