-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
1577 lines (1491 loc) · 100 KB
/
app.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var map;
function createMap () {
var options = {
center: { lat: 35.6951184, lng: 139.744247 },
zoom: 11.5,
styles: [
{
"featureType": "administrative.country",
"elementType": "labels.text",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "poi.highway",
"elementType": "labels.icon",
"stylers": [
{
"visibility": "on"
},
{
"hue": "rgb(39, 116, 160)"
}
]
},
{
"featureType": "road",
"elementType": "all",
"stylers": [
{
"saturation": -100
},
{
"lightness": 45
}
]
},
{
"featureType": "water",
"elementType": "all",
"stylers": [
{
"color": "#7dcdcd"
}
]
},
{
"featureType": "landscape.natural",
"elementType": "geometry.fill",
"stylers": [
{
"visibility": "on"
},
{
"color": "#e0efef"
}
]
},
{
"featureType": "poi",
"elementType": "geometry.fill",
"stylers": [
{
"visibility": "on"
},
{
"hue": "#1900ff"
},
{
"color": "#c0e8e8"
}
]
},
{
"featureType": "road",
"elementType": "labels.text",
"stylers": [
{
"visibility": "on"
}
]
}
]
};
map = new google.maps.Map(document.getElementById('map'), options);
var input = document.getElementById('search');
var searchBox = new google.maps.places.SearchBox(input);
map.addListener('bounds_changed', function() {
searchBox.setBounds(map.getBounds());
});
var searchMarkers = [];
searchBox.addListener('places_changed', function () {
var places = searchBox.getPlaces();
if (places.length == 0)
return;
searchMarkers.forEach(function (m) { m.setMap(null); });
searchMarkers = [];
var bounds = new google.maps.LatLngBounds();
places.forEach(function(p) {
if (!p.geometry)
return;
searchMarkers.push(new google.maps.Marker({
map: map,
title: p.name,
position: p.geometry.location,
icon: "./icons/marker1.png",
}));
if (p.geometry.viewport)
bounds.union(p.geometry.viewport);
else
bounds.extend(p.geometry.location);
});
map.fitBounds(bounds);
});
// Add Markers to Array
var markers = [{
location: {
lat: 35.6666425,
lng: 139.6914441
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%83%81%E3%83%BC%E3%82%BA%E3%82%B9%E3%82%BF%E3%83%B3%E3%83%89/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/chst1.jpg" alt="チーズスタンド"/></a></div>
<div style='position: reletive;'><a href="https://cheese-stand.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#チーズスタンド</a><p style='margin-bottom: 3px'>주소 : 1 Chome-16-11 Tomigaya, Shibuya City, Tokyo 151-0063 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 8시</p><p>전화번호 : +81 3-3481-0884</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 7위❤</p></div></div>`
}, // 치즈스탠드
{
location: {
lat: 35.6431782,
lng: 139.6980374,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%82%AA%E3%83%8B%E3%83%90%E3%82%B9%E3%82%B3%E3%83%BC%E3%83%92%E3%83%BC/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/onibus.jpg" alt="オニバスコーヒー"/></a></div>
<div style='position: reletive;'><a href="https://onibuscoffee.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#オニバスコーヒー</a><p style='margin-bottom: 3px'>주소 : 2 Chome-14-1 Kamimeguro, Meguro City, Tokyo 153-0051 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 9시 ~ 오후 6시</p><p>전화번호 : +81 3-6412-8683</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 4위❤</p></div></div>`
// 오니버스 オニバスコーヒー
},
{
location: {
lat: 35.6720937,
lng: 139.6906045,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/littlenapcoffeestand/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/littlenap.jpg" alt="リトルナップ コーヒースタンド"/></a></div>
<div style='position: reletive;'><a href="https://littlenap.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Little Nap Coffee Stand</a><p style='margin-bottom: 3px'>주소 : 5 Chome-65-4 Yoyogi, Shibuya City, Tokyo 151-0053 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 9시 ~ 오후 7시</p><p>전화번호 : +81 3-3466-0074</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 5위❤</p></div></div>`
// 리틀냅
},
{
location: {
lat: 35.6677177,
lng: 139.6838773,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%83%AA%E3%83%88%E3%83%AB%E3%83%8A%E3%83%83%E3%83%97%E3%82%B3%E3%83%BC%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%B9%E3%82%BF%E3%83%BC%E3%82%BA/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/littlesnap2.jpg" alt="リトルナップ コーヒーロースターズ"/></a></div>
<div style='position: reletive;'><a href="https://littlenap.jp/" target="_blank" style='margin: 0; font-size: 1.7em; text-decoration: none;'>#Little Nap Coffee Stand Roasters</a><p style='margin-bottom: 3px'>주소 : 2-43-15 Tomigaya, Shibuya City, Tokyo 151-0063 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 9시 ~ 오후 7시</p><p>전화번호 : +81 3-5738-8045</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 5위❤</p></div></div>`
// 리틀냅2
},
{
location: {
lat: 35.6676216,
lng: 139.7060224,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/honeymihoneycafe/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/honey2.jpg" alt="Honey Mi Honey"/></a></div>
<div style='position: reletive;'><a href="https://honey-mi-honey.com/reservation/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Honey Mi Honey</a><p style='margin-bottom: 3px'>주소 : 일본 〒150-0001 Tokyo, Shibuya City, Jingumae, 6 Chome−2−6 原宿あかねビル 2F</p><p style='margin-bottom: 3px'>운영 시간 : 오후 12시 ~ 오후 8시(수요일 휴무)</p><p>전화번호 : +81 3-5774-2190</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 9위❤</p></div></div>`
// 허니미허니
},
{
location: {
lat: 35.651085,
lng: 139.7245727,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/nemcoffeeandespresso/" target="_blank" style="color: black">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/nem.jpg" alt="ネムコーヒーア"/></a></div>
<div style='position: reletive;'><a href="http://nem-coffee.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Nem Coffee & Espresso</a><p style='margin-bottom: 3px'>주소 : 4 Chome-5-6 Minamiazabu, Minato City, Tokyo 106-0047 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오후 08시 ~ 오후 5시(화요일 휴무)</p><p style='margin-bottom: 3px'>전화번호 : +81 3-6886-4777</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 1위❤</p></div></div>`
// 네무커피 ネムコーヒーアンドエスプレッソ
},
{
location: {
lat: 35.6740435,
lng: 139.7293852,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/connelcoffee/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/conel.jpg" alt="コーネルコーヒー"/></a></div>
<div style='position: reletive;'><a href="http://connelcoffee.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#コーネルコーヒー</a><p style='margin-bottom: 3px'>주소 : 일본 〒107-0052 Tokyo, Minato City, Akasaka, 7 Chome−2−21, Sōgetsu Hall, 2階</p><p style='margin-bottom: 3px'>운영 시간 : 오전 10시 ~ 오후 6시(주말 휴무)</p><p>전화번호 : +81 3-6434-0192</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 6위❤</p></div></div>`
// 코네루커피 コーネル
},
{
location: {
lat: 35.6655863,
lng: 139.6929491,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/thelattetokyo/?hl=ja" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/thelatte.jpg" alt="THE LATTE TOKYO"/></a></div>
<div style='position: reletive;'><a href="https://linktr.ee/thelattetokyo" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#THE LATTE TOKYO</a><p style='margin-bottom: 3px'>주소 : 3-3 Kamiyamacho, Shibuya City, Tokyo 150-0047 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 8시 ~ 오후 7시(주말 10~18시)</p><p>전화번호 : +81 3-6416-8298</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 10위❤</p></div></div>`
// 더 라떼 커피 THE LATTE TOKYO
},
{
location: {
lat: 35.6668317,
lng: 139.6924029,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%83%9C%E3%83%B3%E3%83%80%E3%82%A4%E3%82%AB%E3%83%95%E3%82%A7/?hl=ja" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/bondi.jpg" alt="Bondi Cafe"/></a></div>
<div style='position: reletive;'><a href="http://bondicafe.net/bondi-cafe-yoyogi-beach-park/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Bondi Cafe</a><p style='margin-bottom: 3px'>주소 : 일본 〒151-0063 Tokyo, Shibuya City, Tomigaya, 1 Chome−15−2 バルビゾン55 1F</p><p style='margin-bottom: 3px'>운영 시간 : 오전 9시 ~ 오후 8시</p><p>전화번호 : +81 3-5790-9998</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 2위❤</p></div></div>`
// 본디 커피 bondi
},
{
location: {
lat: 35.6655554,
lng: 139.6922187,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/camelbacktokyo/?hl=ja" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/camel.jpg" alt="CAMELBACK"/></a></div>
<div style='position: reletive;'><a href="https://camelback.tokyo/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#CAMELBACK Sandwich</a><p style='margin-bottom: 3px'>주소 : 42-2 Kamiyamacho, Shibuya City, Tokyo 150-0047 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 9시 ~ 오후 6시</p><p>전화번호 : +81 3-6407-0069</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 3위❤</p></div></div>`
// 카멜백 camelback
},
{
location: {
lat: 35.68698,
lng: 139.73845,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/natadecristiano/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/nata.jpg" alt="ナタ・デ・クリスチアノ"/></a></div>
<div style='position: reletive;'><a href="http://www.cristianos.jp/nata/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#ナタ・デ・クリスチアノ</a><p style='margin-bottom: 3px'>주소 : 일본 〒151-0063 Tokyo, Shibuya City, 渋谷区Tomigaya, 1 Chome−14−16 スタンフォードコート</p><p style='margin-bottom: 3px'>운영 시간 : 오전 10시 ~ 오후 7시 30분</p><p>전화번호 : +81 3-6804-9723</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 11위❤</p></div></div>`
// 나타 데 크리스티아노
},
{
location: {
lat: 35.6691043,
lng: 139.6900557,
},
iconImage: "./icons/cafe.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/afterhourscafe/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/after.jpg" alt="Afterhours"/></a></div>
<div style='position: reletive;'><a href="https://afterhours.jp/shop/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Afterhours</a><p style='margin-bottom: 3px'>주소 : 1 Chome-7-9 Tomigaya, Shibuya City, Tokyo 151-0063 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오후 12시 ~ 오후 5시</p><p>임시 휴업 중</p><p style='font-family: Jua; font-size: 18px; color: #462d19;'>인스타 '카페' 해시태그 순위 8위❤</p></div></div>`
// 애프터하우스
},
{
location: {
lat: 35.6585805,
lng: 139.7453389,
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%9D%B1%E4%BA%AC%E3%82%BF%E3%83%AF%E3%83%BC/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/tower.jpg" alt="東京タワー"/></a></div>
<div style='position: reletive;'><a href="https://www.tokyotower.co.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#東京タワー</a><p style='margin-bottom: 3px'>주소 : 4 Chome-2-8 Shibakoen, Minato City, Tokyo 105-0011 일본</p><p>임시 휴업중</p><p>전화번호 : +81 3-3433-5111</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 1위❤</p></div></div>`
// 도쿄타워
},
{
location: {
lat: 35.6722448,
lng: 139.7624187,
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%9D%B1%E4%BA%AC%E3%82%BF%E3%83%AF%E3%83%BC/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/plaza.jpg" alt="東急プラザ銀座"/></a></div>
<div style='position: reletive;'><a href="https://ginza.tokyu-plaza.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#東急プラザ 銀座</a><p style='margin-bottom: 3px'>주소 : 5 Chome-2-1 Ginza, Chuo City, Tokyo 104-0061 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 8시</p><p>전화번호 : +81 3-3571-0109</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 2위❤</p></div></div>`
// 도쿄프라자
},
{
location: {
lat: 35.7100627,
lng: 139.8107004,
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%9D%B1%E4%BA%AC%E3%82%B9%E3%82%AB%E3%82%A4%E3%83%84%E3%83%AA%E3%83%BC/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/sky.jpg" alt="東京スカイツリー"/></a></div>
<div style='position: reletive;'><a href="https://www.tokyo-skytree.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#東京スカイツリー</a><p style='margin-bottom: 3px'>주소 : 1 Chome-1-2 Oshiage, Sumida City, Tokyo 131-0045 일본</p><p>임시 휴업중</p><p>전화번호 : +81 570-550-634</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 3위❤</p></div></div>`
// 스카이트리
},
{
location: {
lat: 35.7153358,
lng: 139.7739818,
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E4%B8%8A%E9%87%8E%E5%85%AC%E5%9C%92/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/ueno.jpg" alt="上野公園"/></a></div>
<div style='position: reletive;'><a href="https://www.kensetsu.metro.tokyo.lg.jp/jimusho/toubuk/ueno/kouenannai.html" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#上野公園</a><p style='margin-bottom: 3px'>주소 : 일본 〒110-0007 Tokyo, Taito City, Uenokoen, 8, 5−20・池之端三丁目</p><p style='margin-bottom: 3px'>운영 시간 : 오전 5시 ~ 오후 11시</p><p>전화번호 : +81 3-3828-5644</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 4위❤</p></div></div>`
// 우에노 공원
},
{
location: {
lat: 35.7099344,
lng: 139.8091915
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%81%99%E3%81%BF%E3%81%A0%E6%B0%B4%E6%97%8F%E9%A4%A8/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/suimida.jpg" alt="すみだ水族館"/></a></div>
<div style='position: reletive;'><a href="https://www.sumida-aquarium.com/index.html" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#すみだ水族館</a><p style='margin-bottom: 3px'>주소 : 일본 〒131-0045 Tokyo, Sumida City, Oshiage, 1 Chome−1−2 東京スカイツリータウン・ソラマチ 5-6F</p><p>임시 휴업중</p><p>전화번호 : +81 3-5619-1821</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 5위❤</p></div></div>`
// 스미다 수족관
},
{
location: {
lat: 35.6958427,
lng: 139.7030554
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%AD%8C%E8%88%9E%E4%BC%8E%E7%94%BA%E4%B8%80%E7%95%AA%E8%A1%97/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/kabuki.jpg" alt="歌舞伎町"/></a></div>
<div style='position: reletive;'><a href="http://www.kabukicho.or.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#歌舞伎町(Kabukicho)</a><p style='margin-bottom: 3px'>주소 : 〒160-0021 도쿄도 신주쿠구</p><p>가부키쵸는 밤문화를 즐기기 위한 스폿이 수많이 존재하며, 거리가 밤부터 활기를 띄어서 사람들이 「잠들지 않는 거리」라고 부르고 있습니다.</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 6위❤</p></div></div>`
// 가부키초
},
{
location: {
lat: 35.7187449,
lng: 139.7960771
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%B5%85%E8%8D%89/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/asakusa.jpg" alt="浅草"/></a></div>
<div style='position: reletive;'><a href="https://www.gotokyo.org/kr/destinations/eastern-tokyo/asakusa/index.html" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#浅草(Asakusa)</a><p style='margin-bottom: 3px'>주소 : 〒111-0032 도쿄도 다이토구</p><p>아사쿠사는 옛 도쿄의 분위기를 간직하고 있는 지역으로 유서 깊은 센소지 인근의 나카미세 거리에는 전통적인 공예품점과 길거리 음식 노점이 있습니다. 아사쿠사를 방문하여, 일본의 전통, 예술, 공예품을 접해보세요!</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 7위❤</p></div></div>`
// 아사쿠사
},
{
location: {
lat: 35.6594975,
lng: 139.6990039
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/locations/2043173272649826/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/crossing2.jpg" alt="渋谷スクランブル交差点"/></a></div>
<div style='position: reletive;'><a href="https://en.japantravel.com/tokyo/shibuya-crossing/3016" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#渋谷スクランブル交差点</a><p style='margin-bottom: 3px'>주소 : 1 Chome-2-1 Dogenzaka, Shibuya City, Tokyo 150-0043 일본</p><p>도쿄의 상징적인 랜드마크 시부야 스크램블 교차로에서 한번에 1,000명 이상이 도로를 건너는 광경을 구경하세요. 도쿄 인구 최다 밀집지역을 카메라에 담을 수 있는 시부야의 대표 포토 스팟</p><p style='font-family: Jua; font-size: 18px; color: deepskyblue;'>인스타 '명소' 해시태그 순위 8위❤</p></div></div>`
// 시부야 교차로
},
{
location: {
lat: 35.6763976,
lng: 139.6993259
},
iconImage: "./icons/museums.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%98%8E%E6%B2%BB%E7%A5%9E%E5%AE%AE/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/meiji2.jpg" alt="明治神宮"/></a></div>
<div style='position: reletive;'><a href="https://www.meijijingu.or.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#明治神宮</a><p style='margin-bottom: 3px'>주소 : 1-1 Yoyogikamizonocho, Shibuya City, Tokyo 151-8557 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 5시 ~ 오후 6시 10분</p><p>전화번호 : +81 3-3379-5511</p><p style='font-family: Jua; font-size: 18px; color: chocolate;'>인스타 '신사' 해시태그 순위 1위❤</p></div></div>`
// 메이지 신사
},
{
location: {
lat: 35.7200104,
lng: 139.7607541
},
iconImage: "./icons/museums.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%A0%B9%E6%B4%A5%E7%A5%9E%E7%A4%BE/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/nedu2.jpg" alt="根津神社"/></a></div>
<div style='position: reletive;'><a href="http://www.nedujinja.or.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#根津神社</a><p style='margin-bottom: 3px'>주소 : 1 Chome-28-9 Nezu, Bunkyo City, Tokyo 113-0031 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 6시 ~ 오후 4시 30분</p><p>전화번호 : +81 3-3822-0753</p><p style='font-family: Jua; font-size: 18px; color: chocolate;'>인스타 '신사' 해시태그 순위 2위❤</p></div></div>`
// 네즈 신사
},
{
location: {
lat: 35.6746667,
lng: 139.7399445
},
iconImage: "./icons/museums.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%97%A5%E6%9E%9D%E7%A5%9E%E7%A4%BE/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/hie.png" alt="日枝神社"/></a></div>
<div style='position: reletive;'><a href="https://www.hiejinja.net/index.html" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#日枝神社</a><p style='margin-bottom: 3px'>주소 : 2 Chome-10-5 Nagatachō, Chiyoda City, Tokyo 100-0014 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 6시 ~ 오후 5시</p><p>전화번호 : +81 3-3581-2471</p><p style='font-family: Jua; font-size: 18px; color: chocolate;'>인스타 '신사' 해시태그 순위 3위❤</p></div></div>`
// 히에 신사
},
{
location: {
lat: 35.6488126,
lng: 139.647585
},
iconImage: "./icons/museums.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/gotokujitemple/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/gotokuji.jpg" alt="豪徳寺"/></a></div>
<div style='position: reletive;'><a href="https://gotokuji.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#豪徳寺</a><p style='margin-bottom: 3px'>주소 : 2 Chome-24-7 Gotokuji, Setagaya City, Tokyo 154-0021 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 6시 ~ 오후 5시(임시 휴업중)</p><p>전화번호 : +81 3-3426-1437</p><p style='font-family: Jua; font-size: 18px; color: chocolate;'>인스타 '절' 해시태그 순위 1위❤</p></div></div>`
// 고토쿠지
},
{
location: {
lat: 35.7147651,
lng: 139.7967613
},
iconImage: "./icons/museums.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E6%B5%85%E8%8D%89%E5%AF%BA/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/sensoji.jpg" alt="浅草寺"/></a></div>
<div style='position: reletive;'><a href="https://www.senso-ji.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#浅草寺</a><p style='margin-bottom: 3px'>주소 : 2 Chome-3-1 Asakusa, Taito City, Tokyo 111-0032 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 6시 ~ 오후 5시</p><p>전화번호 : +81 3-3842-0181</p><p style='font-family: Jua; font-size: 18px; color: chocolate;'>인스타 '절' 해시태그 순위 2위❤</p></div></div>`
// 센소지
},
{
location: {
lat: 35.6865016,
lng: 139.6970264
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%81%86%E3%81%A9%E3%82%93%E6%85%8E/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/udonsin.jpg" alt="うどん 慎"/></a></div>
<div style='position: reletive;'><a href="https://www.udonshin.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#うどん 慎</a><p style='margin-bottom: 3px'>주소 : 일본 〒151-0053 Tokyo, Shibuya City, Yoyogi, 2 Chome−20−16 相馬ビル 1F</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 8시</p><p>전화번호 : +81 3-6276-7816</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 3위❤</p></div></div>`
// 우동신
},
{
location: {
lat: 35.6465322,
lng: 139.6928018
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/higashiyamatokyo/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/higashi.jpg" alt="HIGASHI-YAMA Tokyo"/></a></div>
<div style='position: reletive;'><a href="https://higashiyama-tokyo.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#HIGASHI-YAMA Tokyo</a><p style='margin-bottom: 3px'>주소 : 1 Chome-21-25 Higashiyama, Meguro City, Tokyo 153-0043 일본</p><p>임시 휴업 중</p><p>전화번호 : +81 3-5720-1300</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 1위❤</p></div></div>`
// 히가시야마
},
{
location: {
lat: 35.6902676,
lng: 139.7064013
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%82%82%E3%81%A8%E6%9D%91/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/motomura.jpg" alt="牛かつもと村"/></a></div>
<div style='position: reletive;'><a href="https://www.gyukatsu-motomura.com/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#牛かつもと村</a><p style='margin-bottom: 3px'>주소 : 2 Chome-2 Shinjuku, Shinjuku City, Tokyo 160-0022 일본 </p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 10시</p><p>전화번호 : +81 3-3354-0171</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 4위❤</p></div></div>`
// 모토무라 1
},
{
location: {
lat: 35.6663971,
lng: 139.7560212
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%82%82%E3%81%A8%E6%9D%91/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/motomura2.jpg" alt="牛かつもと村"/></a></div>
<div style='position: reletive;'><a href="https://www.gyukatsu-motomura.com/" target="_blank" style='margin: 0; font-size: 1.7em; text-decoration: none;'>#牛かつもと村 (신바시점)</a><p style='margin-bottom: 3px'>주소 : 일본 〒105-0004 Tokyo, Minato City, Shinbashi, 2 Chome−15−13, Elegance.Bld., B1F</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 9시</p><p>전화번호 : +81 3-3593-2229</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 4위❤</p></div></div>`
// 모토무라 2
},
{
location: {
lat: 35.68687,
lng: 139.7750558
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%82%82%E3%81%A8%E6%9D%91/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/motomura2.jpg" alt="牛かつもと村"/></a></div>
<div style='position: reletive;'><a href="https://www.gyukatsu-motomura.com/" target="_blank" style='margin: 0; font-size: 1.7em; text-decoration: none;'>#牛かつもと村 (무라마치점)</a><p style='margin-bottom: 3px'>주소 : 일본 〒103-0022 Tokyo, Chuo City, Nihonbashimuromachi, 2 Chome−3−1 2 地下1階 B18号室 コレド室町</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 8시</p><p>전화번호 : +81 3-3273-5121</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 4위❤</p></div></div>`
// 모토무라 3
},
{
location: {
lat: 35.6570237,
lng: 139.7039568
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E3%82%82%E3%81%A8%E6%9D%91/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/motomura4.jpg" alt="牛かつもと村"/></a></div>
<div style='position: reletive;'><a href="https://www.gyukatsu-motomura.com/" target="_blank" style='margin: 0; font-size: 1.7em; text-decoration: none;'>#牛かつもと村 (시부야점)</a><p style='margin-bottom: 3px'>주소 : 일본 〒150-0002 Tokyo, Shibuya City, Shibuya, 3 Chome−18−10 2号館地下1階 大野ビル</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 10시</p><p>전화번호 : +81 3-3797-3735</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 4위❤</p></div></div>`
// 모토무라 4
},
{
location: {
lat: 35.6655431,
lng: 139.7105646
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E8%8C%B6%E6%B4%92%E9%87%91%E7%94%B0%E4%B8%AD/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/sasya3.jpg" alt="茶洒 金田中"/></a></div>
<div style='position: reletive;'><a href="http://www.kanetanaka.co.jp/restrant/sahsya/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#茶洒 金田中</a><p style='margin-bottom: 3px'>주소 : 3 Chome-6-1 Kitaaoyama, Minato City, Tokyo 107-0061 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 30분 ~ 오후 10시</p><p>전화번호 : +81 3-6450-5116</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 2위❤</p></div></div>`
// 사샤
},
{
location: {
lat: 35.6955676,
lng: 139.6986518
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E9%BA%BA%E5%B1%8B%E6%AD%A6%E8%94%B5/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/menya.jpg" alt="麺屋武蔵"/></a></div>
<div style='position: reletive;'><a href="https://menya634.co.jp/storelist/shinjuku/?lang=ko" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#麺屋武蔵 (본점)</a><p style='margin-bottom: 3px'>주소 : 일본 〒160-0023 Tokyo, Shinjuku City, Nishishinjuku, 7 Chome−2−6 西新宿K-1ビル 1F</p><p style='margin-bottom: 3px'>운영 시간 : 오전 11시 ~ 오후 10시</p><p>전화번호 : +81 3-3363-4634</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 5위❤</p></div></div>`
// 멘야무사시 본점
},
{
location: {
lat: 35.7190704,
lng: 139.9263643
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E5%91%B3%E6%A5%BD%E4%BA%AD/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/mirak2.jpg" alt="味楽亭"/></a></div>
<div style='position: reletive;'><a href="https://mirakutei-motoyawata.gorp.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#味 楽 亭(야키니쿠 전문)</a><p style='margin-bottom: 3px'>주소 : 일본 〒272-0023 Chiba, Ichikawa, Minamiyawata, 4 Chome−8−2 エスフォート本八幡 1F</p><p style='margin-bottom: 3px'>운영 시간 : 오후 5시 ~ 오후 10시</p><p>전화번호 : +81 47-377-2941</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 6위❤</p></div></div>`
// 미락정
},
{
location: {
lat: 35.6710627,
lng: 139.7050782
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/santamonicacrepes/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/santa.jpg" alt="Santa monica Crepes"/></a></div>
<div style='position: reletive;'><a href="http://santamonica.jp/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Santa monica Crepes</a><p style='margin-bottom: 3px'>주소 : 1 Chome-16-16-8 Jingumae, Shibuya City, Tokyo 150-0001 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 10시 ~ 오후 9시</p><p>전화번호 : +81 3-3804-5139</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 8위❤</p></div></div>`
// 산타모니카
},
{
location: {
lat: 35.6710227,
lng: 139.7050982
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/angelcrepes/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/heart.jpg" alt="Angel Crepes"/></a></div>
<div style='position: reletive;'><a href="http://www.angelsrecipeicecream.com/menu" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#Angel Crepes</a><p style='margin-bottom: 3px'>주소 : 1 Chome-16-9 Jingumae, Shibuya City, Tokyo 150-0001 일본</p><p style='margin-bottom: 3px'>운영 시간 : 오전 10시 ~ 오후 9시</p><p>전화번호 : +81 3-6804-5139</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 7위❤</p></div></div>`
// 엔젤크레페
},
{
location: {
lat: 35.642781,
lng: 139.6689434
},
iconImage: "./icons/restaurants.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">
<a href="https://www.instagram.com/explore/tags/%E4%B8%89%E8%A7%92%E5%9C%B0%E5%B8%AF/" target="_blank">
<img style="display: inline-block; width:20vh; height:20vh; border-radius:50%;" src="./images/three.jpg" alt="三角地帯"/></a></div>
<div style='position: reletive;'><a href="https://tokyocheapo.com/restaurant/sankaku-chitai/" target="_blank" style='margin: 0; font-size: 1.8em; text-decoration: none;'>#三角地帯</a><p style='margin-bottom: 3px'>주소 : 2 Chome-13-9 Sangenjaya, Setagaya City, Tokyo 154-0024 일본</p><p>일명 '삼색지대'라고 불리는 이곳. 싸고 매력적인 추천 음식점들이 정말 많습니다. 술을 좋아하는 사람은 한 번 들어가면 좀처럼 나올 수 없는 그런 산겐 자야에 있는 술집거리의 매력에 빠져보세요!</p><p style='font-family: Jua; font-size: 18px; color: crimson;'>인스타 '식당' 해시태그 순위 9위❤</p></div></div>`
// 삼색지대
},
{
location: {
lat: 35.6390429,
lng: 139.7046679
},
iconImage: "./icons/default.png",
content:
`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&Gothic+A1:wght@400;500display=swap" rel="stylesheet">
<style type="text/css">
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black;}
a:active {text-decoration: none; color: deeppink;}
a:hover {text-decoration: underline; color: deeppink;}
</style>
<div style='display: flex; align-items: center; width:80vh; height:27vh; padding-left:1.5vh; font-family:Gothic A1; font-weight:500'><div style="margin-right: 5vh; ">