| 39 | } |
| 40 | }); |
| 41 | } |
| 42 | |
| 43 | interface MapViewProps { |
| 44 | allFields: Field[]; |
| 45 | selectedFields: Field[]; |
| 46 | activeField: Field | null; |
| 47 | flyToField?: Field | null; |
| 48 | onFlyToDone?: () => void; |
| 49 | onFieldClickOnMap: (field: Field) => void; |
| 50 | onAddField: (field: Field) => void; |
| 51 | editBoundaryFieldId?: string | null; |
| 52 | onUpdateField?: (field: Field) => void; |
| 53 | onCancelEditBoundary?: () => void; |
| 54 | } |
| 55 |
nothing calls this directly
no outgoing calls
no test coverage detected