Google 地图 API - 地图不再显示

发布于 2024-07-23 00:27:44 字数 279 浏览 10 评论 0原文

我为我工作的一家小公司设置了一个方向页面。 它 有一些标记,可以让人们从以下位置获取前往该位置的路线 无论他们在哪里。 由于某种原因,该页面决定停止显示 在浏览器中。 我几乎做了所有我能想到的事情 没有任何效果。 我不是最擅长 javascript 但我老实说 无法弄清楚什么是不正确的。 我确实尝试重新发布关键思想 这可能是导致问题的原因,但它不起作用。 下面我有 包含页面链接:

alfordmotorsonline.com/directions.html

I setup a directions page for a small company that I do work for. It
has a few markers and lets people get directions to the location from
wherever they are. For some reason, the page decided to stop coming up
in the browser. I've done just about anything I could think and
nothing has worked. I'm not the best at javascript but I honestly
cannot figure what is incorrect. I did try to reissue the key thinking
that might be cause the issue but it did not work. Below I have
included the link to the page:

alfordmotorsonline.com/directions.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-07-30 00:27:44

您的“initialize()”函数似乎没有被调用。 尝试在您的 JavaScript 中添加类似以下内容

window.onload = function () {
    initialize();
}

,看看是否有帮助。

Your 'initialize()' function does not appear to be getting called. Try adding something like:

window.onload = function () {
    initialize();
}

to your javascript and see if that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文