Merge pull request #8320 from rgvassar/ol3

OpenLayers - Added source.Vector.getFeaturesAtCoordinate method.
This commit is contained in:
Masahiro Wakame
2016-03-04 22:14:11 +09:00

View File

@@ -4180,6 +4180,11 @@ declare module ol {
* Get all features on the source
*/
getFeatures(): ol.Feature[];
/**
* Get all features whose geometry intersects the provided coordinate.
*/
getFeaturesAtCoordinate(coordinate: ol.Coordinate): ol.Feature[];
}
class VectorEvent {