Azure Search で位置情報を利用したフィルタリングやソートを試してみた

Azure Search ではインデックスの作成時に WithGeographyPointField メソッドで指定することで、検索インデックスに緯度経度からなる位置情報を持たせることが出来ます。 var client = new IndexManagementClient(connection); await client.CreateIndexAsync(new Index("items") .WithStringField("id", p => p.IsKey().I…