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