gpt4 book ai didi

javascript - 谷歌地图平移到

转载 作者:数据小太阳 更新时间:2023-10-29 05:42:21 24 4
gpt4 key购买 nike

一整天都在努力通过文本链接在谷歌地图中设置平移。看起来 map 本身的 ID 没有被传递给函数,但我尝试了很多事情,但并不愉快。

<script type="text/javascript">
var home = new google.maps.LatLng(4.915833, 10.195313);
function initialize() {
var myOptions = {
zoom: 2,
center: home,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: false,
panControl: true,
panControlOptions: {
position: google.maps.ControlPosition.LEFT_CENTER
},
zoomControl: true,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.LARGE,
position: google.maps.ControlPosition.LEFT_CENTER
},
scaleControl: false,
streetViewControl: true,
streetViewControlOptions: {
position: google.maps.ControlPosition.LEFT_CENTER
}
}
var map = new google.maps.Map(document.getElementById("map"), myOptions);
setMarkers(map, destinations);
clickroute(map);
}
var destinations = [
['Marbella', 36.509937, -4.886352],
['Algarve', 37.016945, -7.928728],
['London', 51.508129, -0.128005],
['Istanbul', 41.00527, 28.97696],
['Whistler', 50.116168, -122.959423]
];
function setMarkers(map, locations) {
var image = new google.maps.MarkerImage('img/marker.png',
new google.maps.Size(41, 63),
new google.maps.Point(0,0));
for (var i = 0; i < locations.length; i++) {
var destination = locations[i];
var myLatLng = new google.maps.LatLng(destination[1], destination[2]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
title: destination[0]
});
}
}
function clickroute(lati, long) {
var latLng = new google.maps.LatLng(51.433373, -0.712251);
map.panTo(latLng);
}
</script>

<li onclick="clickroute()">test</li>

关于可能导致问题的任何可能的想法?我得到一个 js 错误

Uncaught TypeError: Object #<HTMLDivElement> has no method 'panTo'

谢谢

理查德

最佳答案

@onemach 是正确的。

1.您必须声明 map作为javascript开头的全局变量。只需做一个 var map; <script type="text/javascript"> 之后立即声明标签。

2。同时您的 map 初始化应更改为

map = new google.maps.Map(document.getElementById("map"), myOptions); // without the 'var'

3。您的来电clickroute() onClick 的 <li>没有参数。所以改变clickroute()的定义像这样:

function clickroute() { //just omit the 'lati' and 'long'
var latLng = new google.maps.LatLng(51.433373, -0.712251);
map.panTo(latLng);
}

现在点击 test <li>你的 map 将移动到点 (51.433373, -0.712251)

关于javascript - 谷歌地图平移到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9874576/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com