Giving vector features an onScreen method. By default, this uses geometry.intersects. If a rougher approximation will do, call with boundsOnly set to true. r=crschmidt (closes #1238)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@5625 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -76,6 +76,31 @@
|
||||
t.eq( bounds.toArray(), [1,2,3,4], "toArray() returns correct value." );
|
||||
}
|
||||
|
||||
function test_Bounds_toGeometry(t) {
|
||||
t.plan(7);
|
||||
var minx = Math.random();
|
||||
var miny = Math.random();
|
||||
var maxx = Math.random();
|
||||
var maxy = Math.random();
|
||||
var bounds = new OpenLayers.Bounds(minx, miny, maxx, maxy);
|
||||
var poly = bounds.toGeometry();
|
||||
t.eq(poly.CLASS_NAME, "OpenLayers.Geometry.Polygon",
|
||||
"polygon instance created");
|
||||
t.eq(poly.components.length, 1,
|
||||
"polygon with one ring created");
|
||||
var ring = poly.components[0];
|
||||
t.eq(ring.components.length, 5,
|
||||
"four sided polygon created");
|
||||
t.eq(ring.components[0].x, minx,
|
||||
"bounds left preserved");
|
||||
t.eq(ring.components[0].y, miny,
|
||||
"bounds bottom preserved");
|
||||
t.eq(ring.components[2].x, maxx,
|
||||
"bounds left preserved");
|
||||
t.eq(ring.components[2].y, maxy,
|
||||
"bounds bottom preserved");
|
||||
}
|
||||
|
||||
function test_04_Bounds_contains(t) {
|
||||
t.plan( 6 );
|
||||
bounds = new OpenLayers.Bounds(10,10,40,40);
|
||||
|
||||
@@ -23,6 +23,41 @@
|
||||
"geometry.property set properly" );
|
||||
}
|
||||
|
||||
function test_Feature_onScreen(t) {
|
||||
t.plan(6);
|
||||
var line = new OpenLayers.Geometry.LineString([
|
||||
new OpenLayers.Geometry.Point(0, 0),
|
||||
new OpenLayers.Geometry.Point(10, 20)
|
||||
]);
|
||||
var feature = new OpenLayers.Feature.Vector(line);
|
||||
feature.layer = {
|
||||
map: {
|
||||
getExtent: function() {
|
||||
return new OpenLayers.Bounds(5, 5, 10, 10);
|
||||
}
|
||||
}
|
||||
};
|
||||
t.eq(feature.onScreen(), true,
|
||||
"intersecting feature returns true for intersection");
|
||||
t.eq(feature.onScreen(true), true,
|
||||
"intersecting feature returns true for bounds only");
|
||||
|
||||
// move the line so only the bounds intersects
|
||||
line.move(0, 5);
|
||||
t.eq(feature.onScreen(), false,
|
||||
"bounds-only feature returns false for intersection");
|
||||
t.eq(feature.onScreen(true), true,
|
||||
"bounds-only feature returns true for bounds only");
|
||||
|
||||
// move the line so bounds does not intersect
|
||||
line.move(0, 10);
|
||||
t.eq(feature.onScreen(), false,
|
||||
"off-screen feature returns false for intersection");
|
||||
t.eq(feature.onScreen(true), false,
|
||||
"off-screen feature returns false for bounds only");
|
||||
|
||||
}
|
||||
|
||||
function test_Feature_Vector_clone(t) {
|
||||
t.plan(5);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user