我正在完成一个项目,为了改进用户功能,我希望有一个页面,浏览器可以在其中获取用户的当前位置(geolocation()),并使用纬度和经度填写表单字段。但是,一旦发生这种情况,我希望在用户可以拖动的google地图上放置一个标记,当他们拖动它时,它将在表单中更新。我知道一定有办法做到这一点,但我不太能做到。到目前为止,我已经使它具备了获取用户位置和填写表单字段的全部功能。我有点挣扎与谷歌API,虽然。它没有帮助我不是很精通Javascript(这些功能几乎是我在整个大型项目中使用的唯一Javascript)。附件是获取位置并填写输入字段的工作代码,然后我对谷歌地图API进行了第一次攻击,失败了:地图只是作为一个带有缩放控件和街景拖拽器的空白灰色框出现,但它们什么也不做,因为它都是灰色的。
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
<script>
var x=document.getElementById("latitude");
var y=document.getElementById("longitude");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="Geolocation is not supported by this browser.";}
}
function showPosition(position) {
x.value=position.coords.latitude;
y.value=position.coords.longitude;
}
getLocation();
和这里的谷歌api的东西是失败的(请记住,这只是一个黑客一起尝试,我有点认为不会工作)。我想知道x和y值是否没有立即填写然后调用这个,因为如果我硬编码纬度和经度而不是x和y,我会得到一个函数映射,尽管,显然因为x和y没有被使用,它不会在表单中填写:
function initialize() {
var myLatlng = new google.maps.LatLng(x, y);
var mapOptions = {
zoom: 4,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
Finally, here's my two fields of the input form:
<p>
<i>Latitude:</i>
<input type="text" name="latitude" id="latitude" placeholder="latitude"><br>
</p>
<p>
<i>Longitude:</i>
<input type="text" name="longitude" id="longitude" placeholder="longitude"><br>
</p>
这就是我要做的
<style>
#map-canvas {
height: 400px;
}
</style>
<div id="map-canvas"></div>
<p>
<i>Latitude:</i>
<input type="text" name="latitude" id="latitude" placeholder="latitude"><br>
</p>
<p>
<i>Longitude:</i>
<input type="text" name="longitude" id="longitude" placeholder="longitude"><br>
</p>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
var x=document.getElementById("latitude");
var y=document.getElementById("longitude");
// Make sure you have a default. You don't know if geolocation will find the user's location
var defaultLocation = new google.maps.LatLng(50.84498962150941, 4.349988162517548); // Manneken Pis, Brussels
var map;
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
}
else {
x.innerHTML = "Geolocation is not supported by this browser.";
////maybe you want to set a marker on the map anyway.
// markerOnClientPosition(defaultLocation);
}
}
function showPosition(position) {
x.value = position.coords.latitude;
y.value = position.coords.longitude;
if (map) {
markerOnClientPosition(new google.maps.LatLng(position.coords.latitude, position.coords.longitude));
}
}
getLocation();
function initialize() {
//var myLatlng = new google.maps.LatLng(Number(x), Number(y)); //
var mapOptions = {
zoom: 10,
center: defaultLocation, // myLatlng,
mapTypeId: google.maps.MapTypeId.HYBRID
}
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
function markerOnClientPosition(myLatlng) {
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
draggable: true,
title: 'You are here. Drag to exact location'
});
// attach a drag event
google.maps.event.addListener(marker, 'dragend', function() {
x.value = marker.getPosition().lat();
y.value = marker.getPosition().lng();
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
我似乎总是在询问之后才解决。经过更多的挖掘,我发现这个页面的最佳解决方案适合我的项目。
Google Maps v3:需要多个可拖动标记来更新HTML输入字段