Currently, I am utilizing the sample code provided below to superimpose an element on a Google map.
<!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>
The current output has a blurred
effect automatically applied.
However, my objective is to achieve the result without the blur effect
as illustrated in the image below.
I kindly seek guidance on eliminating this blur effect. You can check out a sample page by visiting this link.
Please take note that my browser of choice is Google Chrome.