谷歌地图使模糊效果

时间:2013-03-22 04:01:18

标签: javascript html css google-maps

我正在使用此示例代码在Google地图上叠加内容。

<!DOCTYPE HTML>
<html>
  <head>
    <title>Google Map Test</title>
    <style>
      html, body {
        margin: 0;
        padding: 0;
        font-family: Helvetica, sans-serif, Arial;
      }
      .txt {
        position: absolute;
        top: 100px;
        left: 150px;
        padding: 30px 50px;
        text-align: center;
        font-size: 13px;
        font-weight: bold;
        z-index: 99;
        background-color: #fff;
        border: 1px solid #ddd;
      }
    </style>
  </head>
  <body>
    <div>
      <iframe src="http://www.apps-tube.com/ip-lookup/google-map.php?xy=14.4673541,78.8241339" scrolling="no" frameborder="no" id="gmap" style="width:746px;height:380px;"></iframe>
    </div>
    <div class="txt">Country name</div>
  </body>
</html>

我得到了这个结果[文字自动blurred]

enter image description here

但我想要的结果不是blur effect,如下图所示。

enter image description here

请帮我删除这种模糊效果。访问this link获取示例页面。

注意:我正在使用谷歌浏览器。

2 个答案:

答案 0 :(得分:1)

我在Google Crome浏览器中测试了您的代码,您在iframe中调用了 map.php

我已经看到了你调用map的方式,它只调用了图像(我的意思是它的地图Image API,

你找到了使用Google Maps API Web Services

的另一种方法

参考文档并解决您的问题,

在同一解决方案中,没有内置的方法来处理这个问题,因为数据是以预编译的图像形式出现的。

谢谢,

答案 1 :(得分:1)

Jooxa只是忽略了这个错误。此问题仅发生在Google浏览器(版本27或更低版​​本)上。