Last active
March 29, 2016 07:49
-
-
Save nuitsjp/c8be34dea49ca0841f68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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