The plots for some of the Canadian addresses tend to be hundreds of miles away from the actual locations. The example below should plot in the Toronto area, but instead is about 305 miles away.
mapFindResults = GCSMapControl.ActiveMap.FindAddressResults("391 CALEDONIA RD", "YORK", , "ON", "M6E MT8", MapPoint.GeoCountry.geoCountryCanada)
If I remove the last three characters from the postal code, it plots correctly.
mapFindResults = GCSMapControl.ActiveMap.FindAddressResults("391 CALEDONIA RD", "YORK", , "ON", "M6E", MapPoint.GeoCountry.geoCountryCanada)
Am I doing something wrong?
Thank you