File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ import { MainViewModel } from './mainviewmodel';
9797//import Modify from 'ol/interaction/Modify.js';
9898//import Snap from 'ol/interaction/Snap.js';
9999
100- const drawGeometries = [ 'Point' , 'LineString' , 'Polygon' ] ;
100+ const DRAW_GEOMETRIES = [ 'Point' , 'LineString' , 'Polygon' ] as const ;
101101
102102interface IProps {
103103 viewModel : MainViewModel ;
Original file line number Diff line number Diff line change @@ -810,8 +810,8 @@ export class JupyterGISModel implements IJupyterGISModel {
810810 private _geolocation : JgisCoordinates ;
811811 private _geolocationChanged = new Signal < this, JgisCoordinates > ( this ) ;
812812
813- public isDrawVectorLayerEnabled : boolean ;
814- public drawVectorLayerChanged = new Signal < this, boolean > ( this ) ;
813+ private editingVectorLayer : boolean ;
814+ private editingVectorLayerChanged = new Signal < this, boolean > ( this ) ;
815815}
816816
817817export namespace JupyterGISModel {
You can’t perform that action at this time.
0 commit comments