0

我在照片中加载了一张地图。我想在地图上创建一个不再活动的区域。它应该始终处于非活动状态,而不仅仅是在单击或悬停时。我怎么能做这个功能?

4

1 回答 1

0

You just need to set the property neverOn to true for that specific area:

$('specific_area').data('maphilight', {neverOn:false}).trigger('neverOn.maphilight');

You can take a look to the rest of the properties you can set at the plugin docs site.

于 2014-06-11T11:32:24.967 回答