구글 맵에서 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년 전 조회 1,820
14년 전 조회 2,832
14년 전 조회 1,362
14년 전 조회 2,337
14년 전 조회 2,585
14년 전 조회 1,706
14년 전 조회 1,638
14년 전 조회 1,190
14년 전 조회 1,770
14년 전 조회 1,666
14년 전 조회 1,535
14년 전 조회 1,455
14년 전 조회 1,501
14년 전 조회 1,859
14년 전 조회 2,640
14년 전 조회 1,767
14년 전 조회 1,224
14년 전 조회 1.1만
14년 전 조회 1,535
14년 전 조회 1,402
14년 전 조회 1,984
14년 전 조회 3,099
14년 전 조회 1,915
14년 전 조회 1,599
14년 전 조회 1,375
14년 전 조회 2,264
14년 전 조회 1,579
14년 전 조회 2,949
14년 전 조회 1,401
14년 전 조회 1,388
14년 전 조회 1,520
14년 전 조회 2,212
14년 전 조회 1,383
14년 전 조회 2,876
14년 전 조회 1,181
14년 전 조회 3,794
14년 전 조회 3,944
14년 전 조회 3,871
14년 전 조회 3,669
14년 전 조회 1,353
14년 전 조회 1,316
14년 전 조회 1,837
14년 전 조회 2,084
14년 전 조회 1,270
14년 전 조회 1,367
14년 전 조회 1,241
14년 전 조회 5,352
14년 전 조회 1,233
14년 전 조회 5,627
14년 전 조회 1,945
14년 전 조회 1,755
14년 전 조회 1,197
14년 전 조회 1,395
14년 전 조회 1,895
14년 전 조회 1,391
14년 전 조회 2,050
14년 전 조회 1,599
14년 전 조회 1,354
14년 전 조회 1,471
14년 전 조회 3,531
14년 전 조회 1,301
14년 전 조회 1,855
14년 전 조회 1,497
14년 전 조회 1,454
14년 전 조회 1,331
14년 전 조회 3,972
14년 전 조회 1,889
14년 전 조회 1,356
14년 전 조회 1,418
14년 전 조회 1,399
14년 전 조회 1,478
14년 전 조회 1,261
14년 전 조회 1,357
14년 전 조회 1,970
14년 전 조회 3,851
14년 전 조회 2,283
14년 전 조회 1,336
14년 전 조회 1,323
14년 전 조회 1,436
14년 전 조회 1,324
14년 전 조회 1,420
14년 전 조회 1,532
14년 전 조회 1,234
14년 전 조회 3,725
14년 전 조회 3,620
14년 전 조회 1,447
14년 전 조회 1,943
14년 전 조회 1,558
14년 전 조회 1,408
14년 전 조회 3,903
14년 전 조회 2,899
14년 전 조회 2,496
14년 전 조회 2,408
14년 전 조회 1,196
14년 전 조회 1,965
14년 전 조회 1,189
14년 전 조회 1,203
14년 전 조회 1,256
14년 전 조회 1,684
14년 전 조회 1,703