Stable intersectsExtent method for geometries

This commit is contained in:
Tim Schaub
2015-04-02 14:47:07 +02:00
parent 6134a8bf7a
commit 587c06f565
7 changed files with 7 additions and 7 deletions

View File

@@ -212,7 +212,7 @@ ol.geom.GeometryCollection.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.GeometryCollection.prototype.intersectsExtent = function(extent) {
var geometries = this.geometries_;

View File

@@ -214,7 +214,7 @@ ol.geom.LineString.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.LineString.prototype.intersectsExtent = function(extent) {
return ol.geom.flat.intersectsextent.lineString(

View File

@@ -249,7 +249,7 @@ ol.geom.MultiLineString.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.MultiLineString.prototype.intersectsExtent = function(extent) {
return ol.geom.flat.intersectsextent.lineStrings(

View File

@@ -146,7 +146,7 @@ ol.geom.MultiPoint.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.MultiPoint.prototype.intersectsExtent = function(extent) {
var flatCoordinates = this.flatCoordinates;

View File

@@ -338,7 +338,7 @@ ol.geom.MultiPolygon.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.MultiPolygon.prototype.intersectsExtent = function(extent) {
return ol.geom.flat.intersectsextent.linearRingss(

View File

@@ -88,7 +88,7 @@ ol.geom.Point.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.Point.prototype.intersectsExtent = function(extent) {
return ol.extent.containsXY(extent,

View File

@@ -318,7 +318,7 @@ ol.geom.Polygon.prototype.getType = function() {
/**
* @inheritDoc
* @api
* @api stable
*/
ol.geom.Polygon.prototype.intersectsExtent = function(extent) {
return ol.geom.flat.intersectsextent.linearRings(