-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
259 lines (251 loc) · 7 KB
/
index.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>PhoneGapテスト</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<style type="text/css">
* {
margin : 0;
padding : 0;
}
#gmap {
width : 100%;
height : 500px;
background-color : #f80;
}
#setting {
padding : 5px 10px;
line-height : 180%;
}
#setting ul li {
list-style : none;
float : left;
margin-right : 10px;
}
div.balloon {
width : 200px;
font-size : 12px;
}
div.balloon div.title {
font-weight : bold;
}
</style>
</head>
<body>
<div>
<div id="gmap"></div>
<form method="get" action="#" id="setting">
<ul>
<li>
<input type="radio" name="type" value="basic" id="basic" checked="checked" /> <label for="basic">基本版</label>
<input type="radio" name="type" value="detailed" id="detailed" /> <label for="detailed">詳細版</label>
</li>
<li>
<select name="opacity" id="opacity" />
<option value="0">0%</option>
<option value="20">20%</option>
<option value="40">40%</option>
<option value="60" selected="selected">60%</option>
<option value="80">80%</option>
<option value="100">100%</option>
</select>
</li>
<li class="buttons">
<img id="zoom_up" src="img/plus.png" />
<img id="zoom_down" src="img/minus.png" />
<img id="gps_single" src="img/do.png" />
<img id="gps_start" src="img/start.png" />
<img id="gps_stop" src="img/stop.png" />
</li>
</ul>
</form>
</div>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//グローバル変数
//********************************************************************************
var gmap, marker, balloon, seamless, gpsId = false;
//]]>
</script>
<script src="js/seamless.js" type="text/javascript"></script>
<script src="js/windowResize.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//Google Mapsオブジェクト関連
//********************************************************************************
$(document).ready(function(){
//地図描画
gmap = new google.maps.Map(
$( '#gmap' ).get( 0 ),
{
zoom : 10,
minZoom : 5,
maxZoom : 18,
center : new google.maps.LatLng( 35.5, 140 ),
mapTypeId : google.maps.MapTypeId.ROADMAP
}
);
//地図タップ処理
google.maps.event.addListener( gmap, 'click', function( event_ ) {
var latitude = event_.latLng.lat();
var longitude = event_.latLng.lng();
var path = 'http://riodb02.ibase.aist.go.jp/db084/php/featureinfo.php';
var query = {
'type' : $( '#setting input[name=type]:checked' ).val(),
'latlng' : String( latitude ) + ',' + String( longitude )
};
$.ajax({
'url' : path,
'data' : query,
'type' : 'GET',
'async' : true,
'cache' : true,
'dataType' : 'jsonp',
'success' : function ( data_, dataType_ ) {
//
if ( typeof balloon === 'undefined' ) {
balloon = new google.maps.InfoWindow();
}
var html = '<div class="balloon">';
html += '<div class="title">' + data_.title + '</div>';
html += '<hr />';
html += '<div>' + data_.description + '</div>';
html += '</div>';
balloon.setPosition( event_.latLng );
balloon.setContent( html );
balloon.open( gmap );
},
'error' : function ( request_, status_, error_ ) {
//
}
});
});
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//拡大・縮小
//********************************************************************************
$(document).ready(function(){
$( '#zoom_up' ).click(function(){
var zoom = gmap.getZoom();
gmap.setZoom( zoom + 1 );
});
$( '#zoom_down' ).click(function(){
var zoom = gmap.getZoom();
gmap.setZoom( zoom - 1 );
});
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//GPS動作確認
//********************************************************************************
$(document).ready(function(){
var doMarker = function ( latitude_, longitude_ ) {
if ( typeof marker === 'undefined' ) {
marker = new google.maps.Marker({ 'title' : '' });
} else {
marker.setMap( null );
}
var position = new google.maps.LatLng(latitude_, longitude_);
marker.setPosition( position );
marker.setMap( gmap );
gmap.setZoom( 18 );
gmap.setCenter( position );
};
var doGps = function ( type_ ) {
if ( typeof navigator.geolocation === 'undefined' ) {
alert( 'この端末は位置情報取得に対応していません。' );
} else {
if ( typeof balloon !== 'undefined' ) {
balloon.close();
}
//GPSオプション
var option = {};
switch ( type_ ) {
case 'single':
navigator.geolocation.getCurrentPosition(
function ( position_ ) {
doMarker( position_.coords.latitude, position_.coords.longitude );
},
function ( error_ ) {
},
option
);
break;
case 'start':
gpsId = navigator.geolocation.watchPosition(
function ( position_ ) {
doMarker( position_.coords.latitude, position_.coords.longitude );
},
function ( error_ ) {
},
option
);
break;
case 'stop':
if ( gpsId !== false ) {
navigator.geolocation.clearWatch( gpsId );
}
gpsId = false;
break;
default:
//上記以外は何もしない
};
}
};
$( '#gps_single' ).click(function(){
doGps( 'single' );
});
$( '#gps_start' ).click(function(){
doGps( 'start' );
});
$( '#gps_stop' ).click(function(){
doGps( 'stop' );
});
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//地質図オーバーレイ
//********************************************************************************
$(document).ready(function(){
var seamless = project( gmap );
//デフォルト(フォームで指定した値)
var toggle = function () {
var type = $( '#setting input[name=type]:checked' ).val();
var opacity = parseInt( $('#opacity').val(), 10 ) / 100;
seamless.switchTile( type, opacity );
};
toggle();
//フォームの値変更でオーバーレイ上書き
$( '#setting input, #setting select' ).change(function(){
toggle();
});
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
//********************************************************************************
//デバッグ
//********************************************************************************
$(document).ready(function(){
//$( '#debug' ).text( $(window).width() );
});
//]]>
</script>
</body>
</html>