Google地图仅在网站上排名第二

时间:2019-01-08 18:49:50

标签: google-maps

我在网站上放置了代码以显示地图,该地图可以正常工作,但地图仅出现1秒钟,然后消失

搜索年份并尝试了无效的解决方案

// This is to declare the custom exception:
var BreakException = {};

try {
  bot.myenmap.forEach((element) => {
    // This is like a normal forEach loop
    // When you want to break it, just do this:
    throw BreakException;
  });
} catch (e) {
  // If it's a BreakException it will ignore it and not givce errors
  if (e !== BreakException) throw e;
}

1 个答案:

答案 0 :(得分:0)

在页面上打开开发人员工具。 如果您使用的是Google Chrome浏览器,请依次选择菜单>视图>开发人员> JavaScript控制台。

有来自Google Maps API的消息“ RefererNotAllowedMapError

enter image description here