Android中使用Google Map

在app的使用过程中,我们经常会跟地图进行交互,如果是海外的应用,那选择使用Google Map 是最合适的选择。

在Android中如何使用Google Map,这里做一个简要的说明。

Google API_KEY的申请

Google Map 的使用并不是免费的,一开始的就需要申请一个 Google API_KEY,申请教程地址在这里。

start

这个过程中需要提供信用卡的信息,但是有一定的试用过程,大家可以大胆的填写。

在绑定项目的时候,需要注意的是,每一个API_KEY都跟 Package namefingerprint 签名是相关的。

如果API_KEY 和这两个不一致的话,在程序启动的时候在,logcat下就会看到错误。

拿到了API_KEY 还要注意一个问题,如果debug和release 的签名不一样的话,可以在目录下建立一个debug和release 的文件夹,

如图:

Android中使用Google Map_第1张图片

显示地图位置

如果上面的key已经得到,那么编写地图的显示就显得没那么复杂了。

通常来说,都是在fragment 中显示地图信息,在这里建立一个Fragment

对应的xml信息如下:

<fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:context="MapsFragment" />

这个fragment和其他的不一样,在于他的name,android:name="com.google.android.gms.maps.SupportMapFragment" 表示的是使用的是谷歌地图。

fragment 中,我们可以把地图映射出来,对他进行设置:

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        val mapFragment = childFragmentManager.findFragmentById(R.id.map) as SupportMapFragment

        mapFragment?.getMapAsync(this)
    }

当地图准备好以后,会调用onMapReady(map: GoogleMap) ,这时候我们可以获取手机的地理信息,让地图显示手机的当前位置。

    override fun onMapReady(map: GoogleMap) {

        map.isMyLocationEnabled = true
        fusedLocationProviderClient.lastLocation.addOnCompleteListener {
            val lastKnownLocation = LatLng(
                it.result.latitude,
                it.result.longitude
            )
            map.animateCamera(
                CameraUpdateFactory.newCameraPosition(
                    setCameraPosition(lastKnownLocation)
                )
            )
        }
    }

Android中使用Google Map_第2张图片
需要demo代码的可以私信我。

你可能感兴趣的:(Android,高级开发,android)