JQuery 可拖动谷歌地图

发布于 2024-11-15 17:18:00 字数 95 浏览 2 评论 0原文

我有一个 div 覆盖层,上面有 gmap,并使用 jquery 插件使其可拖动 但是当我尝试在地图上使用拉拽功能时,整个 div 都会移动。 有什么想法如何解决这个问题吗?

I have a div overlay with a gmap on it and have used a jquery plugin to make it draggable
but when i try to use the pull and drag function on the map the whole div move.
Any ideas how to fix this?

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

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

发布评论

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

评论(1

不乱于心 2024-11-22 17:18:00

只需将谷歌地图包装在另一个 div 中并为其分配一个句柄,这里是代码和一个工作示例。

HTML:

<div class="draggable">
    <div id="handle">Handle</div>
    <iframe width="700px" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=108+S+4th+St,+Cabot,+AR+72023,+USA&ie=UTF8&ll=34.983948,-92.014875&spn=0.012273,0.027122&z=14&iwloc=addr&om=1&output=embed&s=AARTsJrKwkyz-ofBV3q5yi6SmToKlUCe8Q" style="height: 522px"></iframe>
</div>

Javascript:

$(document).ready(function() {
    $('.draggable').draggable({'handle' : '#handle'});
});

示例:

http ://jsfiddle.net/semTg/

Just wrap the google map in another div and assign it a handle, here is the code and a working example.

HTML :

<div class="draggable">
    <div id="handle">Handle</div>
    <iframe width="700px" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=108+S+4th+St,+Cabot,+AR+72023,+USA&ie=UTF8&ll=34.983948,-92.014875&spn=0.012273,0.027122&z=14&iwloc=addr&om=1&output=embed&s=AARTsJrKwkyz-ofBV3q5yi6SmToKlUCe8Q" style="height: 522px"></iframe>
</div>

Javascript :

$(document).ready(function() {
    $('.draggable').draggable({'handle' : '#handle'});
});

Example :

http://jsfiddle.net/semTg/

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