Sha256: d6a68f4ac335d5292d08c44f97cfd614835f5377c1bad4c62abb0ce811a43677

Contents?: true

Size: 873 Bytes

Versions: 7

Compression:

Stored size: 873 Bytes

Contents

var points = new OpenLayers.Layer.PointGrid({
    isBaseLayer: true, dx: 15, dy: 15
});

var map = new OpenLayers.Map({
    div: "map",
    layers: [points],
    center: new OpenLayers.LonLat(0, 0),
    zoom: 2
});

var rotation = document.getElementById("rotation");
rotation.value = String(points.rotation);
rotation.onchange = function() {
    points.setRotation(Number(rotation.value));
};

var dx = document.getElementById("dx");
var dy = document.getElementById("dy");
dx.value = String(points.dx);
dy.value = String(points.dy);
dx.onchange = function() {
    points.setSpacing(Number(dx.value), Number(dy.value));
};
dy.onchange = function() {
    points.setSpacing(Number(dx.value), Number(dy.value));
};

var max = document.getElementById("max");
max.value = String(points.maxFeatures);
max.onchange = function() {
    points.setMaxFeatures(Number(max.value));
};

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
postrunner-0.0.10 misc/openlayers/examples/point-grid.js
postrunner-0.0.9 misc/openlayers/examples/point-grid.js
postrunner-0.0.8 misc/openlayers/examples/point-grid.js
postrunner-0.0.7 misc/openlayers/examples/point-grid.js
postrunner-0.0.6 misc/openlayers/examples/point-grid.js
postrunner-0.0.5 misc/openlayers/examples/point-grid.js
postrunner-0.0.4 misc/openlayers/examples/point-grid.js