1
+ const shp = require ( "shpjs" ) ;
2
+
3
+ L . ALS . SynthGeometryBaseWizard = L . ALS . Wizard . extend ( {
4
+
5
+ fileLabel : "geometryFileLabel" ,
6
+
7
+ initialize : function ( ) {
8
+
9
+ L . ALS . Wizard . prototype . initialize . call ( this ) ;
10
+ if ( ! window . FileReader ) {
11
+ this . addWidget ( new L . ALS . Widgets . SimpleLabel ( "lbl" , "geometryBrowserNotSupported" , "center" , "error" ) ) ;
12
+ return ;
13
+ }
14
+
15
+ this . addWidget (
16
+ new L . ALS . Widgets . File ( "file" , this . fileLabel )
17
+ ) ;
18
+ } ,
19
+
20
+ statics : {
21
+ /**
22
+ * Callback to pass to {@link L.ALS.SynthGeometryBaseWizard.getGeoJSON}.
23
+ *
24
+ * @callback getGeoJSONCallback
25
+ * @param {Object|"NoFileSelected"|"NoFeatures"|"InvalidFileType" } geoJson GeoJSON or an error message
26
+ * @param {string|undefined } [fileName=undefined] Name of the loaded file
27
+ */
28
+
29
+ /**
30
+ * Reads GeoJSON or ShapeFile and calls a callback with the content as GeoJSON and filename.
31
+ *
32
+ * If an error occurred, the first argument will be an error text, and filename will be `undefined`.
33
+ *
34
+ * @param wizardResults Wizard results
35
+ * @param callback {getGeoJSONCallback}
36
+ */
37
+ getGeoJSON : function ( wizardResults , callback ) {
38
+ let file = wizardResults [ "file" ] [ 0 ] ,
39
+ fileReader = new FileReader ( ) ;
40
+
41
+ if ( ! file ) {
42
+ callback ( "NoFileSelected" ) ;
43
+ return ;
44
+ }
45
+
46
+ // Try to read as shapefile
47
+ fileReader . addEventListener ( "load" , ( event ) => {
48
+ shp ( event . target . result ) . then ( ( geoJson ) => {
49
+ if ( geoJson . features . length === 0 ) {
50
+ callback ( "NoFeatures" ) ;
51
+ return ;
52
+ }
53
+
54
+ callback ( geoJson , file . name ) ;
55
+
56
+ } ) . catch ( ( reason ) => {
57
+ console . log ( reason ) ;
58
+
59
+ // If reading as shapefile fails, try to read as GeoJSON.
60
+ // We won't check bounds because we assume GeoJSON being in WGS84.
61
+ let fileReader2 = new FileReader ( ) ;
62
+ fileReader2 . addEventListener ( "load" , ( event ) => {
63
+ let json ;
64
+
65
+ try {
66
+ json = JSON . parse ( event . target . result ) ;
67
+ } catch ( e ) {
68
+ console . log ( e ) ;
69
+ callback ( "InvalidFileType" ) ;
70
+ return ;
71
+ }
72
+
73
+ callback ( json , file . name ) ;
74
+ } ) ;
75
+ fileReader2 . readAsText ( file ) ;
76
+ } ) ;
77
+ } ) ;
78
+
79
+ try { fileReader . readAsArrayBuffer ( file ) ; }
80
+ catch ( e ) { }
81
+ } ,
82
+
83
+ /**
84
+ * Adds initial shapefile or GeoJSON file to the {@link L.ALS.SynthPolygonLayer} or {@link L.ALS.SynthLineLayer} and updates layer parameters
85
+ *
86
+ * @param synthLayer {L.ALS.SynthPolygonLayer|L.ALS.SynthLineLayer} Pass `this` here
87
+ * @param wizardResults Wizard results
88
+ */
89
+ initializePolygonOrPolylineLayer : function ( synthLayer , wizardResults ) {
90
+ let groupToAdd , layerType , CastTo ,
91
+ finishLoading = ( ) => {
92
+ synthLayer . calculateParameters ( ) ;
93
+ synthLayer . isAfterDeserialization = false ;
94
+ }
95
+
96
+ if ( synthLayer instanceof L . ALS . SynthPolygonLayer ) {
97
+ groupToAdd = synthLayer . polygonGroup ;
98
+ layerType = L . Polygon ;
99
+ CastTo = L . Polygon ;
100
+ } else {
101
+ groupToAdd = synthLayer . drawingGroup ;
102
+ layerType = L . Polyline ;
103
+ CastTo = L . Geodesic ;
104
+ }
105
+
106
+ this . getGeoJSON ( wizardResults , geoJson => {
107
+ switch ( geoJson ) {
108
+ case "NoFileSelected" :
109
+ finishLoading ( ) ;
110
+ return ;
111
+ case "NoFeatures" :
112
+ window . alert ( L . ALS . locale . geometryNoFeatures ) ;
113
+ finishLoading ( ) ;
114
+ return ;
115
+ case "InvalidFileType" :
116
+ window . alert ( L . ALS . locale . geometryInvalidFile ) ;
117
+ finishLoading ( ) ;
118
+ return ;
119
+ }
120
+
121
+ let layersAdded = false ;
122
+ L . geoJson ( geoJson , {
123
+ onEachFeature : ( feature , layer ) => {
124
+ if ( ! ( layer instanceof layerType ) )
125
+ return ;
126
+
127
+ groupToAdd . addLayer ( new CastTo ( layer . getLatLngs ( ) ) ) ;
128
+ layersAdded = true ;
129
+ }
130
+ } ) ;
131
+
132
+ if ( ! layersAdded )
133
+ window . alert ( L . ALS . locale . initialFeaturesNoFeatures ) ;
134
+
135
+ finishLoading ( ) ;
136
+ } ) ;
137
+ }
138
+ }
139
+ } )
0 commit comments