Example of Using Google Maps Service and GPS in Android

本文介绍如何在Android应用中集成Google Maps v2服务及GPS定位功能。首先需要在Google API控制台获取API密钥并配置到AndroidManifest文件中。接着通过创建地图视图并在Activity中引用地图片段实现地图显示。同时,文中详细介绍了如何初始化GPS服务并获取经纬度坐标。


Introduction

This tip is about using Google Maps v2 services and GPS in Android.

Background

Please refer to the below mentioned article to setup your eproject in Android Studio.

Using the Code

The first thing you need to make before use Google maps v2 is get a key for Google:
  • Navigate to your project in the Google APIs Console.
  • In the Services page, verify that the "Google Maps Android API v2" is enabled.
  • In the left navigation bar, click API Access.
  • In the resulting page, click Create New Android Key...
  • In the resulting dialog, enter the SHA-1 fingerprint, then a semicolon, then your application's package name. For example:
    BB:0D:AC:74:D3:21:E1:43:67:71:9B:62:91:AF:A1:66:6E:44:5D:75;com.example.android.mapexample
  • The Google APIs Console responds by displaying Key for Android apps (with certificates) followed by a forty-character API key, for example:
    AIzaSyBdVl-cTICSwYKrZ95SuvNw7dbMuDt1KG0

Set this Key in your Android manifest file:

 <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="@string/google_maps_key" />
<string name="google_maps_key" 
templateMergeStrategy="preserve">...your key ...</string>

After that, you can use class com.google.android.gms.maps.GoogleMap.

The steps to use GoogleMaps are:

  1. Create a view activity_main.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/mainView">
     
        <fragment
            android:id="@+id/map"
            android:name="com.google.android.gms.maps.MapFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
     
    </RelativeLayout>
  2. Create activity MainActivity.java, and reference to @+id/map:
    private GoogleMap googleMap; // Might be null if Google Play services APK is not available.
    
    if (googleMap == null) {
    
        googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
     
        // check if map is created successfully or not
        if (googleMap == null) {
           Toast.makeText(getApplicationContext(),
                    "Sorry! unable to create maps", Toast.LENGTH_SHORT).show();
        }
        else {
            // Changing map type
            //TODO
        }
    }

The Toast.makeText action shows a text indicating that the service of Google maps are not available.

The second thing is initialize the GPS:

To do this, we create a class (GpsLocation) that implements LocationListener to manage the logic of Gps.

We have a constructor, with the context and TextView to show Gps Status:

public GpsLocation(Context mContext, TextView gpsStatusTextView) {
    this.mContext = mContext;
    this.gpsStatusTextView = gpsStatusTextView;
    getLocation();
}

A method getLocation that initializes the gps service and obtains gps location:

public Location getLocation() {
    try {
        locationManager = (LocationManager) mContext
                .getSystemService(Context.LOCATION_SERVICE);
 
        // getting GPS status
        isGPSEnabled = locationManager
                .isProviderEnabled(LocationManager.GPS_PROVIDER);
 
        // getting network status
        isNetworkEnabled = locationManager
                .isProviderEnabled(LocationManager.NETWORK_PROVIDER);
 
        if (!isGPSEnabled && !isNetworkEnabled) {
            // no network provider is enabled
        } else {
            this.canGetLocation = true;
            // First get location from Network Provider
            if (isNetworkEnabled) {
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER,
                        MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                Log.d("Network", "Network");
                if (locationManager != null) {
                    location = locationManager
                            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                    if (location != null) {
                        latitude = location.getLatitude();
                        longitude = location.getLongitude();
                    }
                }
            }
            // if GPS Enabled get lat/long using GPS Services
            if (isGPSEnabled) {
                if (location == null) {
                    locationManager.requestLocationUpdates(
                            LocationManager.GPS_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    Log.d("GPS Enabled", "GPS Enabled");
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                        }
                    }
                }
            }
        }
 
    } catch (Exception e) {
        e.printStackTrace();
    }
 
    return location;
} 

This class has two attributes, latitude and longitude which are initialized in getLocation method.

In MainActivity, we get these values:

gpsLocation = new GpsLocation(this, gpsStatusTextView);
 
if (gpsLocation.canGetLocation()){
    double longitude = gpsLocation.getLongitude();
    double latitude = gpsLocation.getLatitude();
}

Points of Interest

先看效果: https://renmaiwang.cn/s/jkhfz Hue系列产品将具备高度的个性化定制能力,并且借助内置红、蓝、绿三原色LED的灯泡,能够混合生成1600万种不同色彩的灯光。 整个操作流程完全由安装于iPhone上的应用程序进行管理。 这一创新举措为智能照明控制领域带来了新的启示,国内相关领域的从业者也积极投身于相关研究。 鉴于Hue产品采用WiFi无线连接方式,而国内WiFi网络尚未全面覆盖,本研究选择应用更为普及的蓝牙技术,通过手机蓝牙与单片机进行数据交互,进而产生可调节占空比的PWM信号,以此来控制LED驱动电路,实现LED的调光功能以及DIY调色方案。 本文重点阐述了一种基于手机蓝牙通信的LED灯设计方案,该方案受到飞利浦Hue智能灯泡的启发,但考虑到国内WiFi网络的覆盖限制,故而选用更为通用的蓝牙技术。 以下为相关技术细节的详尽介绍:1. **智能照明控制系统**:智能照明控制系统允许用户借助手机应用程序实现远程控制照明设备,提供个性化的调光及色彩调整功能。 飞利浦Hue作为行业领先者,通过红、蓝、绿三原色LED的混合,能够呈现1600万种颜色,实现了全面的定制化体验。 2. **蓝牙通信技术**:蓝牙技术是一种低成本、短距离的无线传输方案,工作于2.4GHz ISM频段,具备即插即用和强抗干扰能力。 蓝牙协议栈由硬件层和软件层构成,提供通用访问Profile、服务发现应用Profile以及串口Profiles等丰富功能,确保不同设备间的良好互操作性。 3. **脉冲宽度调制调光**:脉冲宽度调制(PWM)是一种高效能的调光方式,通过调节脉冲宽度来控制LED的亮度。 当PWM频率超过200Hz时,人眼无法察觉明显的闪烁现象。 占空比指的...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值