-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make mock data because we currently dont need it #31
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
module.exports = | ||
[ | ||
{ | ||
id: 0, | ||
name: 'Daher', | ||
address: '6098 St 8, Nazareth', | ||
phone: '052-535-0691', | ||
coordinates: { | ||
latitude: 32.704783, | ||
longitude: 35.298489, | ||
}, | ||
parkingLotName: 'Al Mutran Parking', | ||
parkingLotAddress: '6100 St, Nazareth', | ||
parkingLotCoordinates: { | ||
latitude: 32.705329, | ||
longitude: 35.298813, | ||
}, | ||
}, | ||
{ | ||
id: 1, | ||
name: 'SimSim', | ||
address: '632 St 3, Nazareth', | ||
phone: '077-551-7275', | ||
coordinates: { | ||
latitude: 32.704375, | ||
longitude: 35.298083, | ||
}, | ||
parkingLotName: 'Al Mutran Parking', | ||
parkingLotAddress: '6100 St, Nazareth', | ||
parkingLotCoordinates: { | ||
latitude: 32.705329, | ||
longitude: 35.298813, | ||
}, | ||
}, | ||
{ | ||
id: 2, | ||
name: 'Vitrage', | ||
address: '6083 St 4, Nazareth', | ||
phone: '04-601-2130', | ||
coordinates: { | ||
latitude: 32.705086, | ||
longitude: 35.298032, | ||
}, | ||
parkingLotName: 'Al Mutran Parking', | ||
parkingLotAddress: '6100 St, Nazareth', | ||
parkingLotCoordinates: { | ||
latitude: 32.705329, | ||
longitude: 35.298813, | ||
}, | ||
}, | ||
]; |