Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Last active March 29, 2016 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nuitsjp/c8be34dea49ca0841f68 to your computer and use it in GitHub Desktop.
Save nuitsjp/c8be34dea49ca0841f68 to your computer and use it in GitHub Desktop.
/// <summary>
/// 検索条件入力コントロール。入力された値をイベントハンドラ内から取得するためメンバ変数に保持しておく
/// </summary>
private SearchBar searchBar;
/// <summary>
/// 地図コントロール。検索結果から該当地点へ移動などを行うためメンバ変数に保持しておく
/// </summary>
private Map map;
/// <summary>
/// Geocoding処理は非同期で実施するため、ローカル変数ではなくメンバ変数に保持しておく
/// </summary>
private readonly Geocoder geocoder = new Geocoder();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment