|
@@ 2200-2211 (lines=12) @@
|
| 2197 |
|
* @link https://webview.webservices.nl/documentation/files/service_geolocation-php.html#Geolocation.geoLocationAddressCoordinatesLatLon |
| 2198 |
|
* @return \StdClass <LatLonCoordinatesMatch> |
| 2199 |
|
*/ |
| 2200 |
|
public function geoLocationAddressCoordinatesLatLon($postcode, $city, $street, $houseNo) |
| 2201 |
|
{ |
| 2202 |
|
return $this->getAdapter()->call( |
| 2203 |
|
'geoLocationAddressCoordinatesLatLon', |
| 2204 |
|
[ |
| 2205 |
|
'postcode' => $postcode, |
| 2206 |
|
'city' => $city, |
| 2207 |
|
'street' => $street, |
| 2208 |
|
'houseno' => $houseNo, |
| 2209 |
|
] |
| 2210 |
|
); |
| 2211 |
|
} |
| 2212 |
|
|
| 2213 |
|
/** |
| 2214 |
|
* Returns the coordinates of the given address in the RD system. |
|
@@ 2230-2236 (lines=7) @@
|
| 2227 |
|
* @link https://webview.webservices.nl/documentation/files/service_geolocation-php.html#Geolocation.geoLocationAddressCoordinatesRD |
| 2228 |
|
* @return \StdClass <RDCoordinatesMatch> |
| 2229 |
|
*/ |
| 2230 |
|
public function geoLocationAddressCoordinatesRD($postcode, $city, $street, $houseNo) |
| 2231 |
|
{ |
| 2232 |
|
return $this->getAdapter()->call( |
| 2233 |
|
'geoLocationAddressCoordinatesRD', |
| 2234 |
|
['postcode' => $postcode, 'city' => $city, 'street' => $street, 'houseno' => $houseNo] |
| 2235 |
|
); |
| 2236 |
|
} |
| 2237 |
|
|
| 2238 |
|
/** |
| 2239 |
|
* Returns a given neighborhood code list sorted in order of increasing distance from a given neighborhood. |