我正在完成一个我正在进行的项目,为了改善用户功能,我希望有一个浏览器获取用户当前位置(geolocation())的页面,并填写形成具有纬度和经度的字段。但是,一旦发生这种情况,我想在谷歌地图上放置一个用户可以拖动的标记,当它们拖动时会在表单中更新。我知道必须有办法做到这一点,但我不能让它发挥作用。截至目前,我已经完全可以获取用户的位置并填写表单字段。不过,我有点挣扎于谷歌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();
这里是google 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>
答案 0 :(得分:0)
我似乎总是在之后解决问题我问他们。经过多次挖掘,我发现这个页面的顶级解决方案可以适应我的项目。
Google Maps v3: need multiple draggable markers to update HTML input fields
答案 1 :(得分:0)
这就是我要做的事情
<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>