質問編集履歴
2
質問プログラムの前後関係を追記記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -61,3 +61,149 @@
|
|
61
61
|
|
62
62
|
|
63
63
|
について、アドバイス頂きたく、宜しくお願い致します。
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
#追記(質問プログラムの前後関係を追記記載)
|
68
|
+
|
69
|
+
質問プログラムの前後を追記記載させていただきます。
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
```html
|
74
|
+
|
75
|
+
<!DOCTYPE html>
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
<!--下記部分は「Google Analytics オプトアウト アドオン」が挿入。_gaUserPrefs.ioo が「true」の場合、トラッキングの計測(アクセス数)がされない、という仕様。
|
80
|
+
|
81
|
+
-->
|
82
|
+
|
83
|
+
<script type="text/javascript">window["_gaUserPrefs"] = { ioo: function () { return true; } }
|
84
|
+
|
85
|
+
</script>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
<head>
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
<!-- Required meta tags -->
|
96
|
+
|
97
|
+
<meta charset="utf-8">
|
98
|
+
|
99
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<!-- Bootstrap CSS -->
|
104
|
+
|
105
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
106
|
+
|
107
|
+
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
<title>Creating a Store Locator on Google Maps</title>
|
116
|
+
|
117
|
+
<style>
|
118
|
+
|
119
|
+
/* Always set the map height explicitly to define the size of the div
|
120
|
+
|
121
|
+
* element that contains the map. */
|
122
|
+
|
123
|
+
#map {
|
124
|
+
|
125
|
+
height: 100%;
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
/* Optional: Makes the sample page fill the window. */
|
132
|
+
|
133
|
+
html,
|
134
|
+
|
135
|
+
body {
|
136
|
+
|
137
|
+
height: 100%;
|
138
|
+
|
139
|
+
margin: 0;
|
140
|
+
|
141
|
+
padding: 0;
|
142
|
+
|
143
|
+
}
|
144
|
+
|
145
|
+
</style>
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
<style>
|
150
|
+
|
151
|
+
.iframeWrap {
|
152
|
+
|
153
|
+
position: relative;
|
154
|
+
|
155
|
+
padding-bottom: 100%;
|
156
|
+
|
157
|
+
height: 0;
|
158
|
+
|
159
|
+
width: 100%;
|
160
|
+
|
161
|
+
overflow: auto;
|
162
|
+
|
163
|
+
allowfullscreen
|
164
|
+
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
.iframeWrap iframe {
|
170
|
+
|
171
|
+
position: absolute;
|
172
|
+
|
173
|
+
top: 0;
|
174
|
+
|
175
|
+
left: 0;
|
176
|
+
|
177
|
+
width: 100% !important;
|
178
|
+
|
179
|
+
height: 100% !important;
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
</style>
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
<script>
|
188
|
+
|
189
|
+
window.console = window.console || function (t) { }; // select
|
190
|
+
|
191
|
+
</script>
|
192
|
+
|
193
|
+
<script>
|
194
|
+
|
195
|
+
if (document.location.search.match(/type=embed/gi)) { // select
|
196
|
+
|
197
|
+
window.parent.postMessage("resize", "*");
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
</script>
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
</head>
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
```
|
1
表題の間違いを訂正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
理解できないscriptの記述があります
|
test
CHANGED
File without changes
|