OpenLayers.Control.ZoomPanel
是否可以在不使用的情况下创建滑块OpenLayers.Control.PanZoomBar
?
我的意思是在缩放面板中创建一个滑块。
OpenLayers.Control.ZoomPanel
是否可以在不使用的情况下创建滑块OpenLayers.Control.PanZoomBar
?
我的意思是在缩放面板中创建一个滑块。
这是一个示例,您需要使其适应您的代码:
map: map,
extent: OpenLayers.Bounds.fromString("-81,-10,-76,-14", false).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject()),
items: [{
xtype: "gx_zoomslider",
aggressive: true,
vertical: true,
height: 100,
x: 10,
y: 20,
plugins: new GeoExt.ZoomSliderTip({
template: "Scale: 1 : {scale}<br>Resolution: {resolution}"
})
}],
希望这可以帮助,