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