-1
私は、HTMLのgeolocation .watcPositionによって生成されたマーカーを持つGoogleマップを持っています。私は、ボタンをクリックするとマーカーの位置をどこか別の場所に更新したい。私はdivに印刷されるボタンのために保存された座標を得ることができます。つまり、関数が機能していることを意味しますが、マーカーをターゲットにすると何も起こりません。 JSは:Googleマップのマーカー位置を更新する
//Function to fetch coordinates
window.onload(findLocation());
var x = document.getElementById("where");
function findLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.watchPosition(locatorMap);
}
else
{
x.innerHTML = "Please allow access to location.";
}
}
//Setting up map
function locatorMap(position)
{
//Location description array
var buttons = ["DIT Aungier Street:", "DIT Kevin Street:", "DIT Bolton Street:", "DIT GrangeGorman"];
//Coordinates Array
var coordinates = [];
coordinates[0]= {lat: 53.3385, lng: -6.2666};
coordinates[1]= {lat: 53.3375, lng: -6.2677};
coordinates[2]= {lat: 53.3515, lng: -6.2694};
coordinates[3]= {lat: 53.3548, lng: -6.2794};
myLocation = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var a0 = document.getElementById("aungier"), a1 = document.getElementById("kevin"), a2 = document.getElementById("bolton"), a3 = document.getElementById("grange");
a0.onclick = function()
{
myLocation = coordinates[0],
where.innerHTML = buttons[0];
};
a1.onclick = function()
{
myLocation = coordinates[1],
where.innerHTML = buttons[1];
};
a2.onclick = function()
{
myLocation = coordinates[2],
where.innerHTML = buttons[2];
};
a3.onclick = function()
{
myLocation = coordinates[3],
where.innerHTML = buttons[3];
};
//Map specs
var map = new google.maps.Map(document.getElementById("mapOne"),
{
zoom: 16,
disableDefaultUI: true,
mapTypeId: google.maps.MapTypeId.TERRAIN
});
var marker = new google.maps.Marker
({
map: map,
position: myLocation,
animation: google.maps.Animation.DROP,
title: "You are here"
});
map.setCenter(myLocation);
}
どのようにして、 "マーカーをターゲット" しようとしていますか?あなたの問題を示す[mcve]を提供してください。 – geocodezip