forked from jsnbuchanan/crowd-funder-for-time-pwa
refactor map selection, and now location selection & cancellation works (but not saving yet)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
export type BoundingBox = {
|
||||
eastLong: number;
|
||||
maxLat: number;
|
||||
maxLong: number;
|
||||
minLat: number;
|
||||
minLong: number;
|
||||
westLong: number;
|
||||
};
|
||||
|
||||
// a singleton
|
||||
@@ -14,7 +14,10 @@ export type Settings = {
|
||||
firstName?: string;
|
||||
lastName?: string;
|
||||
lastViewedClaimId?: string;
|
||||
searchBoxes?: Array<BoundingBox>;
|
||||
searchBoxes?: Array<{
|
||||
name: string;
|
||||
bbox: BoundingBox;
|
||||
}>;
|
||||
showContactGivesInline?: boolean;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user