File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -281,13 +281,13 @@ const MapBase_: React.FunctionComponent<MapBaseProps> = (props) => {
281
281
const req_body = {
282
282
geometry : {
283
283
type : 'Polygon' ,
284
- coordinates : [
284
+ coordinates : [ [
285
285
[ leftLng , topLat ] ,
286
286
[ rightLng , topLat ] ,
287
287
[ rightLng , bottomLat ] ,
288
288
[ leftLng , bottomLat ] ,
289
289
[ leftLng , topLat ] ,
290
- ] ,
290
+ ] ] ,
291
291
} ,
292
292
} ;
293
293
Original file line number Diff line number Diff line change @@ -267,13 +267,13 @@ const SelectionMap_: React.FunctionComponent<SelectionMapProps> = (props) => {
267
267
const req_body = {
268
268
geometry : {
269
269
type : 'Polygon' ,
270
- coordinates : [
270
+ coordinates : [ [
271
271
[ leftLng , topLat ] ,
272
272
[ rightLng , topLat ] ,
273
273
[ rightLng , bottomLat ] ,
274
274
[ leftLng , bottomLat ] ,
275
275
[ leftLng , topLat ] ,
276
- ] ,
276
+ ] ] ,
277
277
} ,
278
278
} ;
279
279
You can’t perform that action at this time.
0 commit comments