Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
很棒的插件,有很棒的文档。
我想知道是否有办法让地图加载时已经突出显示了一个区域,并且已经显示了该区域的工具提示。
这是我的小提琴:
见我的小提琴代码
如果它可以从northwest突出显示的键(未选中)和一个很棒的工具提示开始。
northwest
已经搞砸了一段时间,但无法弄清楚。
提前致谢!
当我添加这个时,它可以在这个 ImageMapster 演示中工作:
见小提琴
$(function(){ $('area[state="OR"]').mapster('set',true); });
对于你的小提琴,我也可以做到。像这样
.mapster('set', true, 'northwest');
你的小提琴
您可以尝试在页面完成加载后立即使用 .ready() 函数来触发事件。
$(document).ready(function() { // Handler for .ready() called. });
在此内部,您可以调用mouseover触发事件时调用的函数。您可以只指定要选择的西北项目。
mouseover