-
Notifications
You must be signed in to change notification settings - Fork 667
/
layers_tochibunrui.txt
1721 lines (1721 loc) · 179 KB
/
layers_tochibunrui.txt
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
{
"layers": [
{
"type": "Layer",
"id": "terrainclassification1",
"title": "地形分類図",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/terrainclassification/terrainclassification1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">地形分類図(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/terrainclassification/地形分類.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "LayerGroup",
"title": "土地利用分類図",
"toggleall": false,
"entries": [
{
"type": "Layer",
"id": "landuseclassification1",
"title": "土地利用分類(第一期:明治期)",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/landuseclassification/landuseclassification1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">土地利用分類(第一期:明治期)(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/landuseclassification/土地利用.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "landuseclassification2",
"title": "土地利用分類(第二期:昭和期)",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/landuseclassification/landuseclassification2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">土地利用分類(第二期:昭和期)(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/landuseclassification/土地利用2.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
}
]
},
{
"type": "LayerGroup",
"title": "災害履歴図(水害)",
"toggleall": false,
"entries": [
{
"type": "Layer",
"id": "DisasterHist_flood_tokyo",
"title": "東京地区(東京東北部・東京西北部・東京西南部) 昭和49年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/tokyo/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)東京地区(東京東北部・東京西北部・東京西南部)昭和49年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_東京地区(東京東北部・東京西北部・東京西南部)_昭和49年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_tokyo.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_saitamaChiba1",
"title": "東京地区 昭和33年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/tokyo2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)東京地区 昭和33年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_東京地区_昭和33年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_tokyo2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_saitamaChiba2",
"title": "埼玉・千葉地区(大宮・野田[南部]) 昭和56年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/saitamaChiba2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)埼玉・千葉地区(大宮・野田[南部])昭和56年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_埼玉・千葉地区(大宮・野田[南部])_昭和56年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_saitamaChiba2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_saitamaChiba3",
"title": "埼玉・千葉地区(大宮・野田[南部]・佐倉・千葉) 昭和56年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/saitamaChiba3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)埼玉・千葉地区(大宮・野田[南部]・佐倉・千葉)昭和56年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_埼玉・千葉地区(大宮・野田[南部]・佐倉・千葉)_昭和56年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_saitamaChiba3.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_saitamaChiba4",
"title": "埼玉・千葉地区(川越) 昭和33年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/saitamaChiba4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)埼玉・千葉地区(川越)昭和33年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_埼玉・千葉地区(川越)_昭和33年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_saitamaChiba4.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_SaitamaChibaIbaragi1",
"title": "埼玉・千葉・茨城地区(常総) 昭和61年~平成27年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/SaitamaChibaIbaragi1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)埼玉・千葉・茨城地区(常総) 昭和61年~平成27年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_関東地区(常総).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_sizuoka",
"title": "静岡地区 明治44年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/sizuoka/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)静岡地区 明治44年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_静岡地区_明治44年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_sizuoka.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie1",
"title": "中部地区(岐阜・大垣) 昭和30年代以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(岐阜・大垣)昭和30年代以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(岐阜・大垣)_昭和30年代以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie1.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie2",
"title": "中部地区(岐阜・大垣) 昭和40~63年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(岐阜・大垣)昭和40~63年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(岐阜・大垣)_昭和40_63年.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie3",
"title": "中部地区(岐阜・大垣) 平成元年~23年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(岐阜・大垣)平成元年~23年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(岐阜・大垣)_平成元年_23年.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie3.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie4",
"title": "中部地区(瀬戸) 昭和32年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(瀬戸)昭和32年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(瀬戸)_昭和32年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie4.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie5",
"title": "中部地区(桑名・四日市) 昭和34年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie5/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(桑名・四日市)昭和34年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(桑名・四日市)_昭和34年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie5.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie6",
"title": "中部地区(豊田・名古屋北部・名古屋南部) 昭和34年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie6/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(豊田・名古屋北部・名古屋南部)昭和34年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_中部地区(豊田・名古屋北部・名古屋南部)_昭和34年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_gifuAichiMie6.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kinki1",
"title": "近畿地区(大津・京都・京都南部) 明治29年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kinki1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)近畿地区(大津・京都・京都南部)明治29年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_近畿地区(大津・京都・京都南部)_明治29年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_kinki1.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kinki2",
"title": "近畿地区(奈良・桜井・大阪・神戸・明石) 昭和7年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kinki2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)近畿地区(奈良・桜井・大阪・神戸・明石)昭和7年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_近畿地区(奈良・桜井・大阪・神戸・明石)_昭和7年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_kinki2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kinki3",
"title": "近畿地区(岸和田・和歌山) 昭和27年以後",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kinki3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)近畿地区(岸和田・和歌山)昭和27年以後(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_近畿地区(岸和田・和歌山)_昭和27年以後.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_kinki3.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku1",
"title": "中国地区(岡山) 昭和59年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(岡山) 昭和59年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(岡山)_昭和59年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Chugoku1.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku2",
"title": "中国地区(岡山) 昭和60年以降",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(岡山) 昭和60年以降(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(岡山)_昭和60年以降.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Chugoku2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku3",
"title": "中国地区(広島) 昭和19年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(広島) 昭和19年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(広島)_昭和19年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Chugoku3.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku4",
"title": "中国地区(広島) 昭和20年以降",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(広島) 昭和20年以降(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(広島)_昭和20年以降.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Chugoku4.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku7",
"title": "中国地区(山口) 昭和26年~平成21年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku7/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(山口) 昭和26年~平成21年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害高潮災害_中国地区(山口・防府).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku1",
"title": "四国地区(高松) 昭和51年~平成17年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(高松) 昭和51年~平成17年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_四国地区(高松).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Shikoku1.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku2",
"title": "四国地区(高知) 昭和47年~平成10年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(高知) 昭和47年~平成10年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_四国地区(高知).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Shikoku2.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku3",
"title": "四国地区(松山) その1 昭和18年~平成22年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(松山) その1 昭和18年~平成22年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_四国地区(松山)_その1.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Shikoku3.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku4",
"title": "四国地区(松山) その2 平成13年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(松山) その2 平成13年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_四国地区(松山)_その2.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> <a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/DisasterHist_flood_Shikoku4.html\">災害履歴図の詳細を表示</a></div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku8",
"title": "四国地区(徳島) 昭和51年~平成26年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku8/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(徳島) 昭和51年~平成26年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_四国地区(徳島).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu7",
"title": "九州地区(宮崎) 昭和14年~平成17年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu7/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(宮崎) 昭和14年~平成17年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(宮崎).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu8",
"title": "九州地区(長崎) 昭和57年~平成24年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu8/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(長崎) 昭和57年~平成24年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_九州地区(長崎).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu9",
"title": "九州地区(鹿児島) 平成5年~平成18年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu9/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(鹿児島) 平成5年~平成18年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(鹿児島).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu1",
"title": "九州地区(福岡) 昭和28年~平成21年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(福岡) 昭和28年~平成21年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(福岡).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu2",
"title": "九州地区(福岡) 昭和48~55年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(福岡) 昭和48~55年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(福岡)S48~55.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu3",
"title": "九州地区(福岡) 昭和56~平成元年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(福岡) 昭和56~平成元年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(福岡)S56~H1.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu6",
"title": "九州地区(大分・別府) 昭和28年~平成24年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu6/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(大分・別府) 昭和28年~平成24年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害_九州地区(大分・別府).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu4",
"title": "九州地区(北九州) その1 昭和28年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(北九州) その1 昭和28年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_九州地区(北九州)_その1.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_kyushu5",
"title": "九州地区(北九州) その2 平成18年~平成25年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/kyushu5/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)九州地区(北九州) その2 平成18年~平成25年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_九州地区(北九州)_その2.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_hokuriku1",
"title": "北陸地区(金沢) 昭和49年~平成20年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/hokuriku1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)北陸地区(金沢) 昭和49年~平成20年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_北陸地区(金沢).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_hokuriku2",
"title": "北陸地区(富山) その1 土石流、台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/hokuriku2/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)北陸地区(富山) その1 土石流、台風(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_北陸地区(富山)_その1.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_hokuriku3",
"title": "北陸地区(富山) その2 洪水進路、浸水域",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/hokuriku3/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)北陸地区(富山) その2 洪水進路、浸水域(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_北陸地区(富山)_その2.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_hokuriku4",
"title": "北陸地区(長岡) 平成16年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/hokuriku4/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)北陸地区(長岡) 平成16年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_北陸地区(長岡).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_hokuriku5",
"title": "北陸地区(新潟) 昭和42年~平成10年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/hokuriku5/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)北陸地区(新潟) 昭和42年~平成10年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_北陸地区(新潟).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_sizuoka1",
"title": "静岡地区(沼津) 昭和33年~平成19年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/sizuoka1/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)静岡地区(沼津) 昭和33年~平成19年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_静岡地区(沼津).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_shikoku9",
"title": "四国地区(高知) 平成26年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/shikoku9/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)四国地区(高知) 平成26年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_四国地区(高知)_その2.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku8",
"title": "中国地区(倉敷) 昭和59年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku8/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(倉敷) 昭和59年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(倉敷)_昭和59年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku9",
"title": "中国地区(倉敷) 昭和60年以降",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku9/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(倉敷) 昭和60年以降(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(倉敷)_昭和60年以降.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_gifuAichiMie7",
"title": "中部地区(豊橋)",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/gifuAichiMie7/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(豊橋東部)(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害災害_中部地区(豊橋東部).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_title\">災害履歴(水害)中部地区(豊橋西部)(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害災害_中部地区(豊橋西部).pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku10",
"title": "中国地区(呉) 平成22年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku10/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(呉) 平成22年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(呉)_平成22年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku11",
"title": "中国地区(呉) 平成30年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku11/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(呉) 平成30年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(呉)_平成30年.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku12",
"title": "中国地区(福山) 平成28年以前",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku12/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(福山) 平成28年以前(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(福山)_平成28年以前.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
},
{
"type": "Layer",
"id": "DisasterHist_flood_chugoku13",
"title": "中国地区(福山) 平成30年",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood/chugoku13/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 2,
"maxZoom": 18,
"maxNativeZoom": 16,
"html": "国土交通省国土政策局が提供する土地分類基本調査(土地履歴調査)で整備した調査成果図です(ズームレベル13~16で表示されます)。<br>ご利用にあたっては<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">『土地履歴調査成果公開サイト』</a>をご確認ください。<br><div class=\"gsi_layerinfo_title\">災害履歴(水害)中国地区(福山) 平成30年(<a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/tile/legend/DisasterHist_flood/災害履歴_水害土砂災害_中国地区(福山)_平成30年.pdf\">凡例を表示</a>)</div><div class=\"gsi_layerinfo_kaisetu\"><a target=\"_blank\" href=\"https://nlftp.mlit.go.jp/kokjo/inspect/landclassification/land/land_history_2011/index_tile.html\">解説</a> </div><div class=\"gsi_layerinfo_copy\">(c)国土政策局</div>"
}
]
},
{
"type": "LayerGroup",
"title": "災害履歴図(水害 災害毎)",
"toggleall": false,
"entries": [
{
"type": "Layer",
"id": "DisasterHist_flood2_outline80_add21",
"title": "水害履歴図(浸水)範囲",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/outline_80_add21/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1896_09_m29",
"title": "1896(明治29)年 9月 降雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1896_09_m29/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1911_08_m44_t",
"title": "1911(明治44)年 8月4日台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1911_08_m44_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1935_06_s10",
"title": "1935(昭和10)年 6月 降雨 鴨川大洪水",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1935_06_s10/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1938_07_s13",
"title": "1938(昭和13)年 7月 降雨 大雨 阪神大水害",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1938_07_s13/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1947_09_s22_t",
"title": "1947(昭和22)年 9月 降雨 カスリーン台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1947_09_s22_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1950_09_s25_t",
"title": "1950(昭和25)年 9月 降雨・高潮 ジェーン台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1950_09_s25_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1951_07_s26_t",
"title": "1951(昭和26)年 7月 降雨 ケイト台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1951_07_s26_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1952_07_s27",
"title": "1952(昭和27)年 7月 降雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1952_07_s27/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1953_08_s28",
"title": "1953(昭和28)年 8月 降雨 大雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1953_08_s28/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1953_09_s28_t",
"title": "1953(昭和28)年 9月 降雨 台風13号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1953_09_s28_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1953_08-09_s28_t",
"title": "1953(昭和28)年 8・9月 降雨 南山城水害・台風13号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1953_08-09_s28_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1954_06_s29",
"title": "1954(昭和29)年 6月 降雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1954_06_s29/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1957_08_s32",
"title": "1957(昭和32)年 8月 降雨 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1957_08_s32/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1958_09_s33_t",
"title": "1958(昭和33)年 9月 降雨 台風22号・狩野川台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1958_09_s33_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1959_08_s34_t",
"title": "1959(昭和34)年 8月 降雨 台風7号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1959_08_s34_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1959_09_s34_t",
"title": "1959(昭和34)年 9月 降雨 伊勢湾台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1959_09_s34_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1961_06_s36",
"title": "1961(昭和36)年 6月 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1961_06_s36/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1961_09_s36_t",
"title": "1961(昭和36)年 9月 降雨・高潮 第2室戸台風",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1961_09_s36_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1966_06_s41_t",
"title": "1966(昭和41)年 6月 降雨 台風4号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1966_06_s41_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1967_07_s42",
"title": "1967(昭和42)年 7月 降雨 昭和42年 7月 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1967_07_s42/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1971_08_s46_t",
"title": "1971(昭和46)年 8月 台風23号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1971_08_s46_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1972_07_s47_t",
"title": "1972(昭和47)年 7月 降雨 台風6号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1972_07_s47_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1972_07_s47_add21",
"title": "1972(昭和47)年 7月 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1972_07_s47_add21/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1974_06_s49",
"title": "1974(昭和49)年6月 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1974_06_s49/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1974_07_s49_t_add21",
"title": "1974(昭和49)年 7月 降雨 台風8号・七夕豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1974_07_s49_t_add21/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1974_07_s49_add21",
"title": "1974(昭和49)年 7月 降雨 豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1974_07_s49_add21/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1975_10_s50_t",
"title": "1975(昭和50)年 10月 台風13号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1975_10_s50_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1976_05_s51",
"title": "1976(昭和51)年 5月 降雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1976_05_s51/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1976_09_s51_t_add21",
"title": "1976(昭和51)年9月 台風17号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1976_09_s51_t_add21/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1981_07_s56",
"title": "1981(昭和56)年 7月 降雨 集中豪雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1981_07_s56/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1981_10_s56_t",
"title": "1981(昭和56)年 10月 降雨 台風24号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1981_10_s56_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1982_08_s57_t",
"title": "1982(昭和57)年 8月 降雨 台風10号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1982_08_s57_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1982_09_s57_t",
"title": "1982(昭和57)年 9月 降雨 台風18号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1982_09_s57_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1983_09_s58_t",
"title": "1983(昭和58)年 9月 豪雨 台風10号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1983_09_s58_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1986_07_s61",
"title": "1986(昭和61)年 7月 降雨",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1986_07_s61/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},
{
"type": "Layer",
"id": "DisasterHist_flood2_1986_08_s61_t",
"title": "1986(昭和61)年 8月 台風10号",
"url": "https://nlftp.mlit.go.jp/kokjo/inspect/tile/landclassification/land_history/DisasterHist_flood2/1986_08_s61_t/{z}/{x}/{y}.png",
"cocotile": false,
"minZoom": 7,
"maxZoom": 18,
"maxNativeZoom": 17,
"html": ""
},