gpt4 book ai didi

javascript - 谷歌地图 - 未捕获 InvalidValueError : initialise is not a function

转载 作者:数据小太阳 更新时间:2023-10-29 04:54:33 27 4
gpt4 key购买 nike

当我加载显示我的 Google map 的页面时,我总是在控制台中看到以下错误:

Uncaught InvalidValueError: initialise is not a function js?sensor=false&callback=initialise:94

将鼠标悬停在文件名上时,这显示为源自 https://maps.googleapis.com/maps/api/js?sensor=false&callback=initialise

Google map 窗口和 map 显示非常好,并且具有完整的功能。奇怪的是,我在谷歌上找不到任何与此相关的搜索结果,它们似乎都是关于 setLong 和 setLat 的。

如果我更改 API 调用和 JS 文件之间的加载顺序,则错误消息会在 initialisegoogle 之间更改。但在这两种情况下, map 仍能继续正常加载。

为什么会出现错误,如何正确解决?这是我的 google-map.js 文件:

function initialise() {
var myLatlng = new google.maps.LatLng(51.126500, 0.257595); // Add the coordinates
var mapOptions = {
zoom: 15, // The initial zoom level when your map loads (0-20)
disableDefaultUI: true, // Disable the map UI
center: myLatlng, // Centre the Map to our coordinates variable
mapTypeId: google.maps.MapTypeId.ROADMAP, // Set the type of Map
scrollwheel: false, // Disable Mouse Scroll zooming (Essential for responsive sites!)
// All of the below are set to true by default, so simply remove if set to true:
panControl:false, // Set to false to disable
mapTypeControl:false, // Disable Map/Satellite switch
scaleControl:false, // Set to false to hide scale
streetViewControl:false, // Set to disable to hide street view
overviewMapControl:false, // Set to false to remove overview control
rotateControl:false // Set to false to disable rotate control
}
var map = new google.maps.Map(document.getElementById('map'), mapOptions); // Render our map within the empty div
var image = new google.maps.MarkerImage('/wp-content/themes/bellavou/img/marker2.png', null, null, null, new google.maps.Size(70,70)); // Create a variable for our marker image.
var marker = new google.maps.Marker({ // Set the marker
position: new google.maps.LatLng(51.125887, 0.258075), // Position marker to coordinates
icon:image, //use our image as the marker
map: map, // assign the market to our map variable
title: 'Bella Vou at The Pantiles' // Marker ALT Text
});
}
google.maps.event.addDomListener(window, 'load', initialise); // Execute our 'initialise' function once the page has loaded.

最佳答案

首先,您定义 API 调用的回调:

https://maps.googleapis.com/maps/api/js?sensor=false&callback=initialise

然后你添加一个监听器

google.maps.event.addDomListener(window, 'load', initialise);

这基本上是一样的。


您应该删除 API 调用中的callback=initialise您的上述addDomListener行JS 文件,它应该可以工作。

关于javascript - 谷歌地图 - 未捕获 InvalidValueError : initialise is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38369151/

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