File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ <h5 class="panel-title text-center">空间关系</h5>
39
39
< span class ="input-group-addon "> 查找对象</ span >
40
40
< select id ="positon " class ="form-control ">
41
41
< option value ="hasTouch "> 边界相触</ option >
42
- < option value ="isIdentical "> 完全相等</ option >
43
42
</ select >
44
43
</ div >
45
44
</ div >
@@ -180,7 +179,13 @@ <h5 class="panel-title text-center">空间关系</h5>
180
179
}
181
180
} ) ;
182
181
searchResults . forEach ( ( item ) => {
183
- res = L . geoJSON ( item ) . addTo ( map ) ;
182
+ res = L . geoJSON ( item , {
183
+ style : function ( ) {
184
+ return {
185
+ color : 'green'
186
+ }
187
+ }
188
+ } ) . addTo ( map ) ;
184
189
resArr . push ( res ) ;
185
190
} ) ;
186
191
}
Original file line number Diff line number Diff line change @@ -189,6 +189,13 @@ var exampleConfig = {
189
189
version : '11.2.0' ,
190
190
thumbnail : "attributes.png" ,
191
191
fileName : "02_attributes"
192
+ } ,
193
+ {
194
+ name : "视频图层" ,
195
+ name_en : "videoLayer" ,
196
+ version : '11.2.0' ,
197
+ thumbnail : "videoLayer.png" ,
198
+ fileName : "videoLayer"
192
199
}
193
200
]
194
201
} ,
You can’t perform that action at this time.
0 commit comments