本文介绍了是否有可能在地图中使用JavaScript将可拖动标记的经度和纬度转换为HTML格式的表单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试获取Google地图中可拖动标记的纬度和经度。我需要这个值直接进入< input type =text>
中的value属性。我设法做到这一点,唯一的问题是我不知道如何添加一个地理编码器,以便用户可以输入自己的地址并获取经纬度,但是他们还需要将标记拖入谷歌地图的情况并不准确。我会把我的代码放在这里。
HTML
<!DOCTYPE html>
< html>
< head>
< meta charset = utf-8 />
< script src =https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false>< / script>
< / head>
< body>
< input type =textid =latitudeplaceholder =latitude>
< input type =textid =longitudeplaceholder =longitude>
< div id =mapstyle =width:500px; height:500px>< / div>
< p>< input class =postcodeid =Postcodename =Postcodetype =text>
< input type =submitid =findbuttonvalue =Find/>< / p>
< / body>