コード例 #1
0
        public async Task GetMultipleNAPOITest3()
        {
            var ids = new List <string>
            {
                "996564435",
                "17254391"
            };
            var account = await _client.Find <PointOfInterest>("NorthAmericaPOI", "1313 S Harbor Blvd, Anaheim CA, 92802",
                                                               _client.ConvertMiToKm(5));

            Assert.IsNotNull(account);
        }
コード例 #2
0
 public async Task <ICollection <EuropeanPointOfInterest> > GetListOfPointAsync(string addresses)
 {
     return(await _client.Find <EuropeanPointOfInterest>(_dataSource, addresses, _radius));
 }