在Openlayers网站的example中有关自定义概述图的参数之一是“className”。例如,“className”参数属于 ol.control.OverviewMap 对象,但object in documentation没有提及该参数,我找不到任何有关它的信息。当您从OverviewMap对象中删除该参数时,能解释一下吗?
答案 0 :(得分:1)
根据源代码,它仍在使用中。也许这只是文档中无意中的遗漏。
https://github.com/openlayers/ol3/blob/master/src/ol/control/overviewmap.js
var className = options.className !== undefined ? options.className : 'ol-overviewmap';