-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpg.html
548 lines (299 loc) · 12.1 KB
/
webpg.html
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
</head>
<body>
<!--1ダイアログ風のポップアップを準備 tyuu-->
<div id="popup" data-role="popup" data-overlay-theme="b"
data-dismissible="false" style="max-width:500px;">
<div data-role="header" data-theme="b">
<h1>確認</h1>
</div>
<div role="main" class="ui-content">
<p>ログアウトしますか?</p>
<!--2ダイアログを閉じるためのボタン -->
<a href="JavaScript:midori_logout()"
class="ui-btn ui-btn-inline ui-corner-all ui-btn-b">ログアウト</a>
<a href="#" data-rel="back"
class="ui-btn ui-btn-inline ui-corner-all">閉じる</a>
</div>
</div>
<div id="panel" data-role="panel" data-display="overlay" data-position="left">
<!--3パネルを閉じるためのリンクボタン -->
<a href="#" data-rel="close"
class="ui-btn ui-corner-all ui-icon-delete ui-btn-icon-left">閉じる</a>
<h3>表示位置指定</h3>
<div class="ui-field-contain">
<fieldset data-role="controlgroup">
</fieldset>
<!-- <div id="selected_chiiki" >
</div>
-->
</div>
<a href="JavaScript:PanMap()" class="ui-btn ui-corner-all ui-icon-arrow-u ui-btn-icon-left">表示位置移動</a>
<script>
var fstatus = {
NONE : 0,
MOUSE : 1,
FUDE : 2, };
var click_status = fstatus.NONE;
var use_geolocation = true; // geolocation を利用可能かどうか
var redMarker = L.icon({
iconUrl: 'images/marker_red.png',
shadowUrl: 'images/marker-shadow.png',
iconSize: [16, 34], // size of the icon
shadowSize: [16, 34], // size of the shadow
iconAnchor: [0, 0], // point of the icon which will correspond to marker's location
shadowAnchor: [0, 0], // the same for the shadow
popupAnchor: [0, 0] // point from which the popup should open relative to the iconAnchor
});
</script>
</div> <!-- end of address search panael -->
<div id="panel_layer" data-role="panel" data-display="overlay" data-position="right">
<a href="#" data-rel="close"
class="ui-btn ui-corner-all ui-icon-delete ui-btn-icon-left">閉じる</a>
<h3>表示指定</h3>
<div id="tabs" data-role="tabs">
<!--2タブリストを準備-->
<div data-role="navbar">
<ul>
<li><a href="#backgr" id="ly_back" class="ui-btn-active">表示地図選択</a></li>
<li><a href="#overlay" id="ly_thema" >災害情報</a></li>
</ul>
</div>
<form method="POST" action="">
<!--1パネル(コンテンツ領域)を準備-->
<div id="backgr" class="ui-body ui-body-a">
<!--ラジオボタンで単一選択ボタンを作成-->
<div class="ui-field-contain">
<!-- <div data-role="fieldcontain"> -->
<!-- <fieldset id="baselayers" data-role="controlgroup"> -->
<fieldset data-role="controlgroup">
<input id="e2" name="base_layer" type="radio" value="オープンストリートマップ" checked />
<label for="e2">オープンストリートマップ</label>
<input id="e1" name="base_layer" type="radio" value="地理院地図 標準地図" />
<label for="e1">標準地図 地理院地図</label>
<input id="e5" name="base_layer" type="radio" value="電子国土基本図(オルソ画像)" />
<label for="e5">写真 地理院地図</label>
<input id="e6" name="base_layer" type="radio" value="淡色地図" />
<label for="e6">淡色地図 地理院地図</label>
<input id="e8" name="base_layer" type="radio" value="地理院地図 色別標高図" />
<label for="e8">色別標高図 地理院地図</label>
<!--
<input id="e7" name="base_layer" type="radio" value="白地図" />
<label for="e7">白地図</label>
-->
</fieldset> <!-- </fieldset> -->
</div> <!-- fieldcontain -->
</div> <!-- ui-field-contain -->
</div> <!-- backgr -->
<div id="overlay" class="ui-body ui-body-a">
<div class="ui-field-contain">
<fieldset data-role="controlgroup">
<input id="ov1"
name="ov_layer1" type="checkbox" value="nsearch" onChange='changechk( this )' checked />
<label for="ov1">調査データ</label>
<input id="ov2"
name="ov_layer2" type="checkbox" value="20190904oomati" onChange='changechk( this )' />
<label for="ov2">20190904大町地区ドローン撮影</label>
<input id="ov3"
name="ov_layer3" type="checkbox" value="t15" onChange='changechk( this )' />
<label for="ov3">201909千葉県南部朝日航洋撮影</label>
</fieldset>
</div>
</div> <!-- overlay -->
</form>
</div>
</div>
</div>
<div id="panel_r" data-role="panel" data-display="overlay" data-position="right">
<a href="#" data-rel="close"
class="ui-btn ui-corner-all ui-icon-delete ui-btn-icon-left">閉じる</a>
<div id="item_info" >
<!--3パネルを閉じるためのリンクボタン -->
</div>
</div>
<div data-role="header" data-position="fixed" data-tap-toggle="true" data-fullscreen="false">
<h2>災害情報報告マップ by IT DART</h2>
<div data-role="navbar" data-position="fixed" data-tap-toggle="false" >
<ul>
<!-- <li><a href="#panel" id="CONTACTS" class="ui-btn ui-btn-inline ui-icon-search ui-btn-icon-top">位置検索</a></li> -->
<li><a href="JavaScript:PanCurrentLocation()" class="ui-btn ui-btn-inline ui-icon-home ui-btn-icon-top">現在地</a></li>
<li><a href="JavaScript:GetItemInfo()" id="TRIPS" class="ui-btn ui-btn-inline ui-icon-info ui-btn-icon-top">情報選択</a></li>
<li><a href="JavaScript:OpenLayerProp()" id="layer_property" class="ui-btn ui-btn-inline ui-icon-bars ui-btn-icon-top">表示地図指定</a></li>
</ul>
</div> <!-- navbar -->
</div><!-- /header -->
<div data-role="content" data-position="fixed" data-fullscreen="false" >
<div id="map">
</div>
</div> <!-- content -->
<script>
// レイヤ選択 種別
var CurlayerKind ="background";
$('#ly_back').on('click', function() {
// alert('back');
CurlayerKind = "background";
});
$('#ly_thema').on('click', function() {
// alert('thema');
CurlayerKind = "thema";
});
//変数argはオブジェクトですよ
var arg = new Object;
// 変数pairにURLの?の後ろを&で区切ったものを配列にして代入
var pair=location.search.substring(1).split('&');
// location.search.substring(1)は、URLから最初の1文字 (?記号) を除いた文字列を取得する
// .split('&')は&で区切り配列に分割する
// for文でrairがある限りループさせる
for(var i=0;pair[i];i++) {
// 変数kvにpairを=で区切り配列に分割する
var kv = pair[i].split('=');// kvはkey-value
// 最初に定義したオブジェクトargに連想配列として格納
arg[kv[0]]=kv[1]; // kv[0]がkey,kv[1]がvalue
}
//alert( arg.ilayer );
function OpenLayerProp() {
// $('#ly_thema').removeClass( 'ui-btn-active' );
$('#ly_back').removeClass('ui-btn-active' );
if ( CurlayerKind == "background" ) {
$('#tabs').tabs({
active: 0
});
$('#ly_back').addClass('ui-btn-active' );
}
else {
$('#tabs').tabs({
active: 1
});
$('#ly_thema').addClass( 'ui-btn-active' );
}
$("#panel_layer").panel("open");
}
function changechk( cb ){
var tgkey = cb.value;
var tgstat = cb.checked;
var tgLayer = overlays[tgkey ];
if ( tgstat ) {
tgLayer.addTo( map );
}
else {
map.removeLayer( tgLayer );
}
// alert(cb.value);
// alert( cb.checked);
}
// base layer radio button handler
$( 'input[name="base_layer"]:radio' ).change( function() {
map.removeLayer( CbaseLayer );
// BaseMaps[$( this ).val()].addTo( map );
CbaseLayer = BaseMaps[$( this ).val()];
CbaseLayer.setZIndex(0);
CbaseLayer.addTo( map );
// map.addLayer( CBaseLayer, true );
// CBaseLayer.setZIndex(0);
//map.addLayer( BaseMaps[$( this ).val()], true );
//alert( $( this ).val()); // valueを表示
});
// 現在位置マーカー
var CPosMarker;
// 現在位置マーカー表示
function onLocationFound(e) {
if ( CPosMarker ) {
CPosMarker.setLatLng(e.latlng);
}
else {
CPosMarker = L.marker(e.latlng,{icon:redMarker}).addTo(map);
}
}
function onLocationError(e){
// var radius = e.accuracy / 2;
var ermess = "位置取得に失敗しました " + ermess
alert( ermess );
}
function PanCurrentLocation(){
map.locate({setView: true, maxZoom: 18});
// map.stopLocate();
}
var map = L.map('map');
//var control = L.control.layers(BaseMaps, overlays ).addTo(map);
//var panelLayers = new L.Control.PanelLayers(BaseMaps, overlays, {collapsed: true});
//map.addControl(panelLayers);
//map.addEventListener("click" ,onMapclick, true);
map.on('locationfound', onLocationFound);
map.on('locationerror', onLocationError);
var popup = new L.Popup({maxwidth: 800});
OSMLayer.setZIndex(0);
OSMLayer.addTo(map);
CbaseLayer = OSMLayer;
default_d.addTo(map);
var featureG = L.featureGroup([ default_d ]);
map.fitBounds(featureG.getBounds());
var Marker;
map.on('move',function( e ) {
click_status = fstatus.MOUSE;
});
function SetMarker( latlng ){
if ( Marker ) {
Marker.setLatLng(latlng);
}
else {
Marker = L.marker( latlng).addTo(map);
}
}
function SetMarkerLatLn( lat, lng ) {
var newLatLng = new L.LatLng(lat, lng);
SetMarker( newLatLng );
}
function GetClickedItemInfo( latlng ) {
//
}
function getFeatureInfoExec( latlng, url ) {
$.ajax({
url: url,
type: "POST",
dataType: "text",
success: function (data, status, xhr) {
var err = typeof data === 'string' ? null : data;
//alert(status);
// alert( url );
showGetFeatureInfoD(err, latlng, data);
},
error: function (xhr, status, error) {
showGetFeatureInfoD(error);
}
});
}
function getFeatureInfoUrl(latlng, wmsl ) {
// Construct a GetFeatureInfo request URL given a point
var point = map.latLngToContainerPoint(latlng, map.getZoom()),
size = map.getSize(),
params = {
request: 'GetFeatureInfo',
service: 'WMS',
srs: 'EPSG:4326',
styles: wmsl.wmsParams.styles,
transparent: wmsl.wmsParams.transparent,
version: wmsl.wmsParams.version,
format: wmsl.wmsParams.format,
bbox: map.getBounds().toBBoxString(),
height: size.y,
width: size.x,
layers: wmsl.wmsParams.layers,
query_layers: wmsl.wmsParams.layers,
info_format: 'text/html'
};
params[params.version === '1.3.0' ? 'i' : 'x'] = Math.round(point.x);
params[params.version === '1.3.0' ? 'j' : 'y'] = Math.round(point.y);
return wmsl._url + L.Util.getParamString(params, wmsl._url, true);
}
function showGetFeatureInfoD(err, latlng, content) {
if (err) { console.log(err); return; } // do nothing if there's an error
//alert(content)
// Otherwise show the content in a popup, or something.
var htxt = $("#item_info").html();
htxt = htxt + " " + content
$("#item_info").html(htxt);
$("#panel_r").panel("open");
// var marker = L.marker([]).addTo(map);
}
</script>
</body>
</html>