구글 맵에서 Lat, Long을 구해서 여분 필드에 넣기

구글 맵에서 주소를 이용해서 위도, 경도를 구해서 여분필드에 저장 하고 싶습니다.
아래에 있던 마커가 모두 위도, 경도로 구하는 샘플이라서..
주소에서 직접 마커 찍도록 바꾸는 것이 어려워서 그냥 여분필드에 미리 위도,경도를 구해서 저장해 놓을 까 합니다.
 
첨부 파일의 중간쯤 보면
         alert("1: " + results[0].geometry.location.lat());
         alert("2: " + results[0].geometry.location.lng());
가 있는데,  이부분을 게시판의 여분 필드 wr_3, wr_4에 저장하면 됩니다. (write_skin.php에서)
 
고수님들의 조언 부탁드립니다.

첨부파일

geocoding-simple.htm (1.7 KB) 12회 2012-01-08 13:13
|

댓글 1개

<script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(36.778, -119.4179);
var myOptions = {
zoom: 12,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}

function codeAddress() {
var address = document.getElementById("wr_1").value;
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
document.getElementById("wr_8").value= results[0].geometry.location.lat();
document.getElementById("wr_9").value= results[0].geometry.location.lng();
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
</script>

이런식으로 이용하시면 될실거 같습니다..
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 2,034
14년 전 조회 3,062
14년 전 조회 1,600
14년 전 조회 2,541
14년 전 조회 2,818
14년 전 조회 1,924
14년 전 조회 1,844
14년 전 조회 1,422
14년 전 조회 1,998
14년 전 조회 1,887
14년 전 조회 1,767
14년 전 조회 1,658
14년 전 조회 1,712
14년 전 조회 2,070
14년 전 조회 2,888
14년 전 조회 1,972
14년 전 조회 1,453
14년 전 조회 1.1만
14년 전 조회 1,751
14년 전 조회 1,636
14년 전 조회 2,182
14년 전 조회 3,312
14년 전 조회 2,102
14년 전 조회 1,815
14년 전 조회 1,611
14년 전 조회 2,482
14년 전 조회 1,773
14년 전 조회 3,156
14년 전 조회 1,597
14년 전 조회 1,620
14년 전 조회 1,722
14년 전 조회 2,443
14년 전 조회 1,598
14년 전 조회 3,065
14년 전 조회 1,402
14년 전 조회 4,009
14년 전 조회 4,162
14년 전 조회 4,085
14년 전 조회 3,892
14년 전 조회 1,589
14년 전 조회 1,532
14년 전 조회 2,046
14년 전 조회 2,309
14년 전 조회 1,498
14년 전 조회 1,567
14년 전 조회 1,488
14년 전 조회 5,562
14년 전 조회 1,457
14년 전 조회 5,853
14년 전 조회 2,164
14년 전 조회 1,948
14년 전 조회 1,414
14년 전 조회 1,599
14년 전 조회 2,126
14년 전 조회 1,605
14년 전 조회 2,270
14년 전 조회 1,793
14년 전 조회 1,580
14년 전 조회 1,713
14년 전 조회 3,757
14년 전 조회 1,492
14년 전 조회 2,087
14년 전 조회 1,707
14년 전 조회 1,651
14년 전 조회 1,542
14년 전 조회 4,203
14년 전 조회 2,102
14년 전 조회 1,544
14년 전 조회 1,647
14년 전 조회 1,630
14년 전 조회 1,701
14년 전 조회 1,465
14년 전 조회 1,565
14년 전 조회 2,189
14년 전 조회 4,076
14년 전 조회 2,496
14년 전 조회 1,572
14년 전 조회 1,543
14년 전 조회 1,658
14년 전 조회 1,541
14년 전 조회 1,646
14년 전 조회 1,763
14년 전 조회 1,455
14년 전 조회 3,947
14년 전 조회 3,850
14년 전 조회 1,666
14년 전 조회 2,166
14년 전 조회 1,796
14년 전 조회 1,619
14년 전 조회 4,118
14년 전 조회 3,116
14년 전 조회 2,703
14년 전 조회 2,630
14년 전 조회 1,404
14년 전 조회 2,168
14년 전 조회 1,420
14년 전 조회 1,433
14년 전 조회 1,485
14년 전 조회 1,912
14년 전 조회 1,908