-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
63 lines (58 loc) · 1.82 KB
/
Copy pathconfig.js
File metadata and controls
63 lines (58 loc) · 1.82 KB
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
// Configuration file for API keys and settings
// IMPORTANT: Replace with your actual Google Maps API key
const CONFIG = {
GOOGLE_MAPS_API_KEY: 'YOUR_GOOGLE_MAPS_API_KEY_HERE',
// Map settings
MAP_CONFIG: {
DEFAULT_LOCATION: { lat: 42.3601, lng: -71.0589 }, // Boston
DEFAULT_ZOOM: 12,
USER_LOCATION_ZOOM: 13,
// Map styling
DARK_THEME: true,
// Features
ENABLE_GEOLOCATION: true,
ENABLE_SEARCH: true,
ENABLE_ARTISAN_MARKERS: true
},
// Artisan data - in a real app, this would come from a database
SAMPLE_ARTISANS: [
{
lat: 42.3601, lng: -71.0589,
name: "Boston Pottery Studio",
craft: "Ceramics",
description: "Handcrafted pottery and ceramic art",
rating: 4.8,
contact: { phone: "(555) 123-4567", email: "info@bostonpottery.com" }
},
{
lat: 42.3505, lng: -71.0365,
name: "Harbor Woodworks",
craft: "Woodworking",
description: "Custom furniture and wood art pieces",
rating: 4.9,
contact: { phone: "(555) 987-6543", email: "hello@harborwood.com" }
},
{
lat: 42.3736, lng: -71.1097,
name: "Cambridge Glass Art",
craft: "Glass Blowing",
description: "Beautiful handblown glass creations",
rating: 4.7,
contact: { phone: "(555) 246-8135", email: "art@cambridgeglass.com" }
},
{
lat: 42.3467, lng: -71.0972,
name: "Textile Dreams",
craft: "Textile Arts",
description: "Handwoven textiles and fiber art",
rating: 4.6,
contact: { phone: "(555) 369-2580", email: "weave@textiledreams.com" }
}
]
};
// Export for use in other files
if (typeof module !== 'undefined' && module.exports) {
module.exports = CONFIG;
} else {
window.CONFIG = CONFIG;
}