| @@ 2833-2862 (lines=30) @@ | ||
| 2830 | * @link https://webview.webservices.nl/documentation/files/service_internationaladdress-php.html#International_Address.internationalAddressSearchInteractive |
|
| 2831 | * @return \StdClass <InternationalAddressSearchV2Result> |
|
| 2832 | */ |
|
| 2833 | public function internationalAddressSearchInteractive( |
|
| 2834 | $organization, |
|
| 2835 | $building, |
|
| 2836 | $street, |
|
| 2837 | $houseNr, |
|
| 2838 | $poBox, |
|
| 2839 | $locality, |
|
| 2840 | $postcode, |
|
| 2841 | $province, |
|
| 2842 | $country, |
|
| 2843 | $language, |
|
| 2844 | $countryFormat |
|
| 2845 | ) { |
|
| 2846 | return $this->getAdapter()->call( |
|
| 2847 | 'internationalAddressSearchInteractive', |
|
| 2848 | [ |
|
| 2849 | 'organization' => $organization, |
|
| 2850 | 'building' => $building, |
|
| 2851 | 'street' => $street, |
|
| 2852 | 'housenr' => $houseNr, |
|
| 2853 | 'pobox' => $poBox, |
|
| 2854 | 'locality' => $locality, |
|
| 2855 | 'postcode' => $postcode, |
|
| 2856 | 'province' => $province, |
|
| 2857 | 'country' => $country, |
|
| 2858 | 'language' => $language, |
|
| 2859 | 'country_format' => $countryFormat, |
|
| 2860 | ] |
|
| 2861 | ); |
|
| 2862 | } |
|
| 2863 | ||
| 2864 | /** |
|
| 2865 | * This method is suited to handle data entry where only partial address information is provided. |
|
| @@ 2886-2915 (lines=30) @@ | ||
| 2883 | * @link https://webview.webservices.nl/documentation/files/service_internationaladdress-php.html#International_Address.internationalAddressSearchV2 |
|
| 2884 | * @return \StdClass <InternationalAddressSearchV2Result> |
|
| 2885 | */ |
|
| 2886 | public function internationalAddressSearchV2( |
|
| 2887 | $organization, |
|
| 2888 | $building, |
|
| 2889 | $street, |
|
| 2890 | $houseNr, |
|
| 2891 | $poBox, |
|
| 2892 | $locality, |
|
| 2893 | $postcode, |
|
| 2894 | $province, |
|
| 2895 | $country, |
|
| 2896 | $language, |
|
| 2897 | $countryFormat |
|
| 2898 | ) { |
|
| 2899 | return $this->getAdapter()->call( |
|
| 2900 | 'internationalAddressSearchV2', |
|
| 2901 | [ |
|
| 2902 | 'organization' => $organization, |
|
| 2903 | 'building' => $building, |
|
| 2904 | 'street' => $street, |
|
| 2905 | 'housenr' => $houseNr, |
|
| 2906 | 'pobox' => $poBox, |
|
| 2907 | 'locality' => $locality, |
|
| 2908 | 'postcode' => $postcode, |
|
| 2909 | 'province' => $province, |
|
| 2910 | 'country' => $country, |
|
| 2911 | 'language' => $language, |
|
| 2912 | 'country_format' => $countryFormat, |
|
| 2913 | ] |
|
| 2914 | ); |
|
| 2915 | } |
|
| 2916 | ||
| 2917 | /** |
|
| 2918 | * Returns the coordinates of the given address in both the RD system and the latitude/longitude system. |
|