我目前在我的 HTML 页面中嵌入了一个谷歌地图窗口(iframe),我想知道是否可以在用户每次点击地图时检索坐标。这可能吗?我应该使用 JavaScript 来执行此操作吗?
我还想知道是否可以禁用单击指定地标时出现的地图弹出窗口。
这是我工作的开始:
<!DOCTYPE html>
<html>
<body>
<h1>Tour Creator</h1>
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/?ie=UTF8&ll=41.807933,-72.249892&spn=0.015754,0.033023&t=h&z=16&output=embed"></iframe><br /><small><a href="https://maps.google.com/?ie=UTF8&ll=41.807933,-72.249892&spn=0.015754,0.033023&t=h&z=16&source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>
</body>
</html>
非常感谢!