久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='yPjxH'></bdo><ul id='yPjxH'></ul>
    1. <small id='yPjxH'></small><noframes id='yPjxH'>

    2. <i id='yPjxH'><tr id='yPjxH'><dt id='yPjxH'><q id='yPjxH'><span id='yPjxH'><b id='yPjxH'><form id='yPjxH'><ins id='yPjxH'></ins><ul id='yPjxH'></ul><sub id='yPjxH'></sub></form><legend id='yPjxH'></legend><bdo id='yPjxH'><pre id='yPjxH'><center id='yPjxH'></center></pre></bdo></b><th id='yPjxH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='yPjxH'><tfoot id='yPjxH'></tfoot><dl id='yPjxH'><fieldset id='yPjxH'></fieldset></dl></div>
      <legend id='yPjxH'><style id='yPjxH'><dir id='yPjxH'><q id='yPjxH'></q></dir></style></legend>

      1. <tfoot id='yPjxH'></tfoot>

        如何在 Google Map Api V2 Android 中搜索?

        How to Search in Google Map Api V2 Android?(如何在 Google Map Api V2 Android 中搜索?)
        1. <tfoot id='0e0cC'></tfoot>

          <small id='0e0cC'></small><noframes id='0e0cC'>

              <tbody id='0e0cC'></tbody>
                <bdo id='0e0cC'></bdo><ul id='0e0cC'></ul>

                <i id='0e0cC'><tr id='0e0cC'><dt id='0e0cC'><q id='0e0cC'><span id='0e0cC'><b id='0e0cC'><form id='0e0cC'><ins id='0e0cC'></ins><ul id='0e0cC'></ul><sub id='0e0cC'></sub></form><legend id='0e0cC'></legend><bdo id='0e0cC'><pre id='0e0cC'><center id='0e0cC'></center></pre></bdo></b><th id='0e0cC'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='0e0cC'><tfoot id='0e0cC'></tfoot><dl id='0e0cC'><fieldset id='0e0cC'></fieldset></dl></div>
                  <legend id='0e0cC'><style id='0e0cC'><dir id='0e0cC'><q id='0e0cC'></q></dir></style></legend>

                  本文介紹了如何在 Google Map Api V2 Android 中搜索?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在開發一個 Android 應用程序并使用 GoogleMaps API v2.此應用程序到目前為止工作,但我想在地圖中搜索路徑:

                  I'm developing an Android application and using GoogleMaps API v2. This application works so far but I want search in the map with a path:

                  截圖:

                  我的代碼:

                  Position_mark = new LatLng(35.7008, 51.437);
                  map.moveCamera(CameraUpdateFactory.newLatLngZoom(Position_mark, 15));
                  map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
                  map.setOnMapClickListener(this);
                  map.setOnMapLongClickListener(this);
                  map.setOnMarkerDragListener(this);
                  

                  ...

                  @Override
                  public boolean onCreateOptionsMenu(Menu menu) {
                      //Used to put dark icons on light action bar
                  
                      mGoItem = menu.add(0, Delete_ITEM_ID, 0, null);
                      mGoItem.setIcon(R.drawable.ic_launcher)
                             .setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
                  
                      SearchView searchView = 
                          new SearchView(getSupportActionBar().getThemedContext());
                      searchView.setQueryHint("Search for Places…");
                      searchView.setIconified(false);
                  
                      menu.add("Search")
                          .setIcon(R.drawable.abs__ic_search)
                          .setActionView(searchView)
                          .setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
                  
                      searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
                  
                          @Override
                          public boolean onQueryTextSubmit(String newText) {
                              return true;
                          }
                  
                          /**
                           * Called when the query text is changed by the user.
                           * @param newText the new content of the query text field.
                           * @return false if the SearchView should perform the 
                           * default action of showing any suggestions if available, 
                           * true if the action was handled by the listener.
                           */
                          @Override
                          public boolean onQueryTextChange(String newText) {
                              Toast.makeText(getApplicationContext(), newText, 1).show();
                              return true;
                          }
                      });
                  
                      return true;
                  }
                  
                  @Override
                  public void onMapClick(LatLng point) {
                      // TODO Auto-generated method stub
                      // tvLocInfo.setText(point.toString());
                      map.animateCamera(CameraUpdateFactory.newLatLng(point));
                      map.clear();
                  
                      Marker Kiel = map.addMarker(new MarkerOptions()
                          .position(point)
                          .title("Kiel")
                          .snippet("Kiel is cool").draggable(true)
                          .icon(BitmapDescriptorFactory
                          .fromResource(R.drawable.ic_launcher)));
                  }
                  

                  我使用 ActionBarSherlockSearchView 進行搜索.如何在 GoogleMaps API 中搜索路徑不是緯度或經度?

                  I use ActionBarSherlock and SearchView for searching. How to search in GoogleMaps API with path not latitute or longitude?

                  推薦答案

                  您可以使用地理編碼來搜索或查看這個使用 json 解析 GoogleMaps 的精彩教程.

                  You can use geocoding to search or see this nice tutorial which uses json parsing GoogleMaps.

                  • 添加Google Places Autocomplete API 作為 Android 搜索對話框中的自定義建議

                  這篇關于如何在 Google Map Api V2 Android 中搜索?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Help calculating X and Y from Latitude and Longitude in iPhone(幫助從 iPhone 中的緯度和經度計算 X 和 Y)
                  Get user#39;s current location using GPS(使用 GPS 獲取用戶的當前位置)
                  IllegalArgumentException thrown by requestLocationUpdate()(requestLocationUpdate() 拋出的 IllegalArgumentException)
                  How reliable is LocationManager#39;s getLastKnownLocation and how often is it updated?(LocationManager 的 getLastKnownLocation 有多可靠,多久更新一次?)
                  CLLocation returning negative speed(CLLocation 返回負速度)
                  How to detect Location Provider ? GPS or Network Provider(如何檢測位置提供者?GPS 或網絡提供商)

                • <legend id='4caj1'><style id='4caj1'><dir id='4caj1'><q id='4caj1'></q></dir></style></legend>

                  <small id='4caj1'></small><noframes id='4caj1'>

                • <tfoot id='4caj1'></tfoot>

                  • <bdo id='4caj1'></bdo><ul id='4caj1'></ul>

                              <tbody id='4caj1'></tbody>
                            <i id='4caj1'><tr id='4caj1'><dt id='4caj1'><q id='4caj1'><span id='4caj1'><b id='4caj1'><form id='4caj1'><ins id='4caj1'></ins><ul id='4caj1'></ul><sub id='4caj1'></sub></form><legend id='4caj1'></legend><bdo id='4caj1'><pre id='4caj1'><center id='4caj1'></center></pre></bdo></b><th id='4caj1'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='4caj1'><tfoot id='4caj1'></tfoot><dl id='4caj1'><fieldset id='4caj1'></fieldset></dl></div>
                            主站蜘蛛池模板: 日韩在线免费 | 国产专区视频 | 国产亚洲精品美女久久久久久久久久 | 日本中文字幕一区 | 久草视频2 | 自拍第1页 | 美女131mm久久爽爽免费 | 日韩在线小视频 | 国产精品久久久久久久午夜片 | 日本一区二区电影 | 精品中文字幕在线观看 | 国产黄色免费网站 | 天堂va在线观看 | 中文字幕在线一区 | 国产一区欧美 | 一级高清 | 一级片免费网站 | 狠狠躁躁夜夜躁波多野结依 | 国产美女视频黄a视频免费 国产精品福利视频 | 日韩视频精品在线 | av片网站 | 91精品国产综合久久久亚洲 | 亚洲精品www| 亚洲精品视频在线观看视频 | 精品视频久久久久久 | 国产电影一区二区三区爱妃记 | 欧美一区不卡 | 久久美女网 | 99久久久久久| 一级欧美黄色片 | 在线三级电影 | 国产精品成人一区二区三区 | 日韩一区二区三区四区五区六区 | 日韩精品国产精品 | 欧美国产视频 | 凹凸日日摸日日碰夜夜 | 亚洲精品女人久久久 | 日韩视频一区二区 | 日韩成人性视频 | 久久久精品影院 | 91在线区|