たとえば、http://www.infoghidromania.com/harta_romania.html Web サイトで住所を入力して [送信] を押すと、GPS 座標が抽出されます。
質問する
140 次
3 に答える
2
そのサイトは google maps API を使用しています。同じ API を使用して、Google マップ自体で見つけることができる任意の場所の経度/緯度を取得できます。
Javascript コード例:
var geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': '<YOUR_SEARCH_STRING_HERE>' }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
alert("Lang/Lat : " + results[0].geometry.location.lat() + " " +results[0].geometry.location.lng());
} else {
alert('Error: ' + status);
}
});
作業例:
于 2013-06-07T12:55:00.790 に答える
0
jquery の使用:
$(function(){
$('idOfInputField').val("content");
$('the id of the form').submit();
});
于 2013-06-07T13:00:34.190 に答える