Android高德獲取當前定位,點擊地圖獲取位置信息

来源:https://www.cnblogs.com/YyyyQ/archive/2020/03/26/12573001.html
-Advertisement-
Play Games

效果圖(GIF壓縮問題請忽略) 1.Activity代碼(Android6.0以上別忘記添加動態許可權) /** * Created by YyyyQ on 2020/3/26 * 獲取當前定位,地圖選點,獲取當前和選擇的位置信息 */ public class LocationActivity ex ...


效果圖(GIF壓縮問題請忽略)

 

1.Activity代碼(Android6.0以上別忘記添加動態許可權)

 

/**
 * Created by YyyyQ on 2020/3/26
 * 獲取當前定位,地圖選點,獲取當前和選擇的位置信息
 */
public class LocationActivity extends AppCompatActivity implements LocationSource, AMapLocationListener, GeocodeSearch.OnGeocodeSearchListener,
        AMap.OnMapClickListener {

    private MapView mapView;
    private AMap aMap;
    private UiSettings uiSettings;
    //定位服務
    private LocationSource.OnLocationChangedListener onLocationChangedListener;
    private AMapLocationClient locationClient;
    private AMapLocationClientOption locationClientOption;
    //地理編碼
    private GeocodeSearch geocodeSearch;
    //回顯位置信息的TextView
    private TextView locationCoordinate;
    private TextView locationInfo;
    //當前地圖上的marker
    private Marker marker;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_location);
        mapView = findViewById(R.id.location_map);
        mapView.onCreate(savedInstanceState);
        locationCoordinate = findViewById(R.id.location_coordinate);
        locationInfo = findViewById(R.id.location_info);
        if (aMap == null) {
            aMap = mapView.getMap();
            uiSettings = aMap.getUiSettings();
            //設置地圖屬性
            setMapAttribute();
        }
    }

    private void setMapAttribute() {
        //設置預設縮放級別
        aMap.animateCamera(CameraUpdateFactory.zoomTo(15));
        //隱藏的右下角縮放按鈕
        uiSettings.setZoomControlsEnabled(false);
        //顯示右上角定位按鈕
        uiSettings.setMyLocationButtonEnabled(false);
        //設置定位監聽
        aMap.setLocationSource(this);
        //可觸發定位並顯示當前位置
        aMap.setMyLocationEnabled(true);
        //定位一次,且將視角移動到地圖中心點
        MyLocationStyle myLocationStyle = new MyLocationStyle();
        myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_LOCATE);
        //隱藏定位點外圈圓的顏色
        myLocationStyle.strokeColor(Color.argb(0, 0, 0, 0));
        myLocationStyle.radiusFillColor(Color.argb(0, 0, 0, 0));
        aMap.setMyLocationStyle(myLocationStyle);
        //設置地理編碼查詢
        geocodeSearch = new GeocodeSearch(this);
        geocodeSearch.setOnGeocodeSearchListener(this);
        //設置地圖點擊事件
        aMap.setOnMapClickListener(this);
    }

    /**
     * 激活定位
     */
    @Override
    public void activate(OnLocationChangedListener onLocationChangedListener) {
        this.onLocationChangedListener = onLocationChangedListener;
        if (locationClient == null) {
            //初始化定位
            locationClient = new AMapLocationClient(this);
            //初始化定位參數
            locationClientOption = new AMapLocationClientOption();
            //設置定位回調監聽
            locationClient.setLocationListener(this);
            //高精度定位模式
            locationClientOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
            //單定位模式
            locationClientOption.setOnceLocation(true);
            //設置定位參數
            locationClient.setLocationOption(locationClientOption);
            //啟動定位
            locationClient.startLocation();
        }
    }

    /**
     * 定位成功後回調函數
     */
    @Override
    public void onLocationChanged(AMapLocation aMapLocation) {
        if (onLocationChangedListener != null && aMapLocation != null) {
            if (aMapLocation.getErrorCode() == 0) {
                //顯示定位圓點
                onLocationChangedListener.onLocationChanged(aMapLocation);
                locationCoordinate.setText("當前緯度:" + aMapLocation.getLatitude() + "當前經度" + aMapLocation.getLongitude());
                //根據當前經緯度查詢地址
                LatLonPoint latLonPoint = new LatLonPoint(aMapLocation.getLatitude(), aMapLocation.getLongitude());
                RegeocodeQuery query = new RegeocodeQuery(latLonPoint, 200, GeocodeSearch.AMAP);
                geocodeSearch.getFromLocationAsyn(query);
            } else {
                Log.e("YyyyQ", "定位失敗" + aMapLocation.getErrorCode() + ":" + aMapLocation.getErrorInfo());
                Toast.makeText(getApplication(), "定位失敗", Toast.LENGTH_SHORT).show();
            }
        }
    }

    /**
     * 停止定位
     */
    @Override
    public void deactivate() {
        onLocationChangedListener = null;
        if (locationClient != null) {
            locationClient.stopLocation();
            locationClient.onDestroy();
        }
    }

    /**
     * 根據坐標轉換地址信息
     */
    @Override
    public void onRegeocodeSearched(RegeocodeResult regeocodeResult, int i) {
        if (i == AMapException.CODE_AMAP_SUCCESS) {
            locationInfo.setText("當前位置信息:" + regeocodeResult.getRegeocodeAddress().getFormatAddress());
        } else {
            Toast.makeText(getApplication(), "獲取當前位置信息失敗", Toast.LENGTH_SHORT).show();
        }
    }

    /**
     * 地址轉坐標
     */
    @Override
    public void onGeocodeSearched(GeocodeResult geocodeResult, int i) {

    }

    /**
     * 地圖點擊事件
     */
    @Override
    public void onMapClick(LatLng latLng) {
        if (marker != null) {
            marker.remove();
        }
        MarkerOptions markerOptions = new MarkerOptions();
        markerOptions.icon(BitmapDescriptorFactory.fromResource(R.drawable.map_icon));
        markerOptions.position(latLng);
        marker = aMap.addMarker(markerOptions);
        //根據點擊地圖的點位獲取詳細信息
        locationCoordinate.setText("當前緯度:" + latLng.latitude + "當前經度" + latLng.longitude);
        //根據當前經緯度查詢地址
        LatLonPoint latLonPoint = new LatLonPoint(latLng.latitude, latLng.longitude);
        RegeocodeQuery query = new RegeocodeQuery(latLonPoint, 200, GeocodeSearch.AMAP);
        geocodeSearch.getFromLocationAsyn(query);
    }


}

 

 

2.xml佈局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <!--地圖o-->
    <com.amap.api.maps.MapView
        android:id="@+id/location_map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!--回顯位置信息的佈局-->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="140dp"
        android:layout_alignParentBottom="true"
        android:layout_margin="15dp"
        android:alpha="0.85"
        android:background="@drawable/layout_background"
        android:orientation="vertical">

        <TextView
            android:id="@+id/location_coordinate"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1.4"
            android:gravity="center|left"
            android:textColor="#1A91B0"
            android:textSize="16sp" />

        <TextView
            android:id="@+id/location_info"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:gravity="center|left|top"
            android:paddingTop="10dp"
            android:textColor="#F05554"
            android:textSize="16sp" />
    </LinearLayout>


</RelativeLayout>

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • https://www.cnblogs.com/linguoguo/p/10640179.html MongoDB: 更高的寫入負載 預設情況下,MongoDB更側重高數據寫入性能,而非事務安全,MongoDB很適合業務系統中有大量“低價值”數據的場景。但是應當避免在高事務安全性的系統中使用Mong ...
  • 本文源碼: "GitHub·點這裡" || "GitEE·點這裡" 一、MySQL用戶 1、基礎描述 在資料庫的使用過程中,用戶作為訪問資料庫的鑒權因素,起到非常重要的作用,安裝MySQL時會自動生成一個root用戶,作為資料庫管理員,擁有所有許可權。在多用戶的應用場景下,可能需要給不同的用戶分配不同 ...
  • 類似PHP語言的 mysql_real_escape_string() 的函數,在用來防範SQL註入的時候,可能會遇到int型註入成功的情況。 mysql_real_escape_string()用法 mysql_real_escape_string() 函數轉義 SQL 語句中使用的字元串中的特殊 ...
  • 最近這兩年創建資料庫的自增Id列總是出現一個問題,一開始自增正常,都是1、2、3遞增,突然就變成1004、1005這樣,一直以為程式有問題,後來多次查閱資料才在國外網站上找到問題。 ...
  • 前面講完Linux下一系列服務的配置和使用之後,本文簡單介紹一款資料庫管理系統(MySQL的兄弟)MariaDB。 ...
  • 五、Navicat Premium 12的安裝和破解 是一套資料庫開發管理工具,支持連接 MySQL、Oracle等多種資料庫,可以快速輕鬆地創建、管理和維護資料庫。 相關教程網址:https://www.jianshu.com/p/42a33b0dda9c 六、Mysql資料庫的簡單操作 打開 , ...
  • 本文將詳細闡述以下MVC、MVP、MVVM三種理念的定義 MVC MVC全名是Model View Controller,是軟體工程中的一種軟體架構模式,把軟體系統分為三個 基本部分:模型(Model)、視圖(View)和控制器(Controller)。 Model(模型)是應用程式中用於處理應用程 ...
  • Flutter 學習路線圖 如果你真的覺得很難,堅持不了了,那就放棄,既然放棄了就不要抱怨沒有得到。 選擇你熱愛的,堅持你選擇的,不抱怨放棄的。 前言 Flutter越來越火,學習Flutter的人越來越多,對於剛接觸Flutter的人來說最重要的是如何學習Flutter,重點學習Flutter的哪 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...