-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapdata.js
More file actions
137 lines (131 loc) · 2.79 KB
/
mapdata.js
File metadata and controls
137 lines (131 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
var simplemaps_countrymap_mapdata={
main_settings: {
//General settings
width: "300", //'700' or 'responsive'
background_color: "#FFFFFF",
background_transparent: "yes",
border_color: "#ffffff",
//State defaults
state_description: "State description",
state_color: "#88A4BC",
state_hover_color: "#3B729F",
state_url: "",
border_size: 1.5,
all_states_inactive: "no",
all_states_zoomable: "yes",
//Location defaults
location_description: "Location description",
location_url: "",
location_color: "#FF0067",
location_opacity: 0.8,
location_hover_opacity: 1,
location_size: 25,
location_type: "square",
location_image_source: "frog.png",
location_border_color: "#FFFFFF",
location_border: 2,
location_hover_border: 2.5,
all_locations_inactive: "no",
all_locations_hidden: "no",
//Label defaults
label_color: "#d5ddec",
label_hover_color: "#d5ddec",
label_size: 22,
label_font: "Arial",
hide_labels: "no",
hide_eastern_labels: "no",
//Zoom settings
zoom: "yes",
manual_zoom: "yes",
back_image: "no",
initial_back: "no",
initial_zoom: "-1",
initial_zoom_solo: "no",
region_opacity: 1,
region_hover_opacity: 0.6,
zoom_out_incrementally: "yes",
zoom_percentage: 0.99,
zoom_time: 0.5,
//Popup settings
popup_color: "white",
popup_opacity: 0.9,
popup_shadow: 1,
popup_corners: 5,
popup_font: "12px/1.5 Verdana, Arial, Helvetica, sans-serif",
popup_nocss: "no",
//Advanced settings
div: "map",
auto_load: "yes",
url_new_tab: "no",
images_directory: "default",
fade_time: 0.1,
link_text: "View Website",
popups: "detect"
},
state_specific: {
DEU1572: {
name: "Nordrhein-Westfalen",
description: "default",
color: "default",
hover_color: "default",
url: "default"
},
DEU1573: {
name: "Baden-Württemberg"
},
DEU1574: {
name: "Hessen"
},
DEU1575: {
name: "Bremen"
},
DEU1576: {
name: "Niedersachsen"
},
DEU1577: {
name: "Thüringen"
},
DEU1578: {
name: "Hamburg"
},
DEU1579: {
name: "Schleswig-Holstein"
},
DEU1580: {
name: "Rheinland-Pfalz"
},
DEU1581: {
name: "Saarland"
},
DEU1591: {
name: "Bayern"
},
DEU1599: {
name: "Berlin"
},
DEU1600: {
name: "Sachsen-Anhalt"
},
DEU1601: {
name: "Sachsen"
},
DEU3487: {
name: "Brandenburg"
},
DEU3488: {
name: "Mecklenburg-Vorpommern"
}
},
locations: {
"0": {
lat: "52.516667",
lng: "13.4",
name: "Berlin"
}
},
labels: {},
legend: {
entries: []
},
regions: {}
};