Spaces:
Sleeping
Sleeping
File size: 1,650 Bytes
f6213fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | use super::super::types::{CustomerType, LocationData};
pub(in crate::data::data_seed) const DEPOTS: &[LocationData] = &[
LocationData {
name: "Centro Storico Depot",
lat: 43.7696,
lng: 11.2558,
customer_type: CustomerType::Business,
},
LocationData {
name: "Santa Maria Novella Depot",
lat: 43.7745,
lng: 11.2487,
customer_type: CustomerType::Business,
},
LocationData {
name: "Campo di Marte Depot",
lat: 43.7820,
lng: 11.2820,
customer_type: CustomerType::Business,
},
LocationData {
name: "Rifredi Depot",
lat: 43.7950,
lng: 11.2410,
customer_type: CustomerType::Business,
},
LocationData {
name: "Novoli Depot",
lat: 43.7880,
lng: 11.2220,
customer_type: CustomerType::Business,
},
LocationData {
name: "Gavinana Depot",
lat: 43.7520,
lng: 11.2680,
customer_type: CustomerType::Business,
},
LocationData {
name: "Mercato Centrale Depot",
lat: 43.7762,
lng: 11.2540,
customer_type: CustomerType::Business,
},
LocationData {
name: "Santa Croce Depot",
lat: 43.7688,
lng: 11.2620,
customer_type: CustomerType::Business,
},
LocationData {
name: "Santo Spirito Depot",
lat: 43.7665,
lng: 11.2470,
customer_type: CustomerType::Business,
},
LocationData {
name: "Careggi Depot",
lat: 43.8020,
lng: 11.2530,
customer_type: CustomerType::Business,
},
];
|