zoukankan      html  css  js  c++  java
  • Google地图开发

    配置Google API SDK

    如果要想进行Google Map或者说是定位服务的开发,那么肯定需要下载一个新的SDK的支持。

    1、点击Android SDK Manager,下载SDK。

    2、直接配置已经下载好的SDK到项目中。

    配置完Google API SDK之后,那么下面就需要建立一个适合于Google的SDK的虚拟机。

    LocationManager的使用

    1、主要逻辑部分

    /**
     * 
     * @author Harvey
     * 
     * 
     */
    public class MyGPSDemo extends Activity
    {
        private TextView msg = null; // 显示坐标信息
        private LocationManager locationManager = null; // 位置管理
    
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            super.setContentView(R.layout.main); // 默认布局管理器
    
            msg = (TextView) super.findViewById(R.id.msgTv); // 获得组件
            locationManager = (LocationManager) super.getSystemService(Context.LOCATION_SERVICE); // 取得位置服务
            locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, // GPS定位提供者
                    1000, // 时间间隔设置为1秒
                    1, // 位置间隔设置为1米
                    new MyLocationListener()); // 设置位置监听
        }
    
        private class MyLocationListener implements LocationListener
        {
    
            @Override
            public void onLocationChanged(Location location)
            {
                // 设备位置发生改变时触发
                msg.setText("用户位置发生改变,新的位置数据:
    " + "经度:" + location.getLongitude() + "
    " + "纬度:"
                        + location.getLatitude() + "
    " + "数据精确度:" + location.getAccuracy() + "
    "
                        + "时间:" + location.getTime() + "
    " + "速度:" + location.getSpeed() + "
    "
                        + "方位:" + location.getBearing()); // 设置文本信息
            }
    
            @Override
            public void onProviderDisabled(String provider)
            {
                // 当数据提供者关闭时触发
            }
    
            @Override
            public void onProviderEnabled(String provider)
            {
                // 当数据提供者启用时触发
            }
    
            @Override
            public void onStatusChanged(String provider, int status, Bundle extras)
            {
                // 当位置信息状态更新时触发
            }
        }
    }

    2、布局文件main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
    
        <TextView
            android:id="@+id/msgTv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/get_msg" />
    
    </LinearLayout>

    3、需要在AndroidManifest.xml文件中添加权限

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

     

  • 相关阅读:
    【Python3 爬虫】U27_多线程爬虫之Queue线程安全队列
    【Python3 爬虫】U26_多线程爬虫之生产者与消费者模式
    【Python3 爬虫】U25_多线程爬虫之多线程共享全局变量及锁机制
    【Python3 爬虫】U24_多线程爬虫之Thread类创建多线程
    Verilog 加法器和减法器(1)
    逻辑门电路详解
    RV32C指令集
    RV32A/RV64A指令集
    RV32M/RV64M指令集
    Risc-V指令集中文文档
  • 原文地址:https://www.cnblogs.com/renqingping/p/GoogleMap.html
Copyright © 2011-2022 走看看