isInAny

fun isInAny(longitude: Double, latitude: Double, ids: Collection<String>): Boolean

Return

whether the given position is in any of the countries with the given ids

Parameters

longitude

longitude of geo position (-180...180)

latitude

latitude of geo position (-90...90)

ids

ids of the countries to look for. Note that if you have many ids, you should use a Set to increase performance

Throws

if any parameter is not finite (NaN or Infinite) or latitude is not between -90.0 and +90.0