我希望使用Openlayers 3以与Openlayers 2(http://dev.openlayers.org/sandbox/jsdoc/examples/graticule.html)相同的方式在我的地图上显示刻度,即在每个版本的包装地图上显示刻度。
此处,经纬网仅显示在第一个/居中的版本上:
var graticule = new ol.Graticule({
maxLines:10,
// the style to use for the lines, optional.
strokeStyle: new ol.style.Stroke({
color: 'rgba(0,0,0,0.9)',
})
});
(jsfiddle:http://jsfiddle.net/tlebras/gb33annw/2/)
两个问题:
1 - 有没有办法在包装地图的每个版本上显示刻度?
2 - 正如您在openlayers2例子中看到的那样,会显示标签。 有没有办法用ol3在刻度上显示一些标签?文档中没有提及。