在谷歌地图Android上添加标记可以通过以下步骤实现:
implementation 'com.google.android.gms:play-services-maps:17.0.1'
<uses-permission android:name="android.permission.INTERNET" />
<!-- 添加以下meta-data标签 -->
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY" />
请将YOUR_API_KEY替换为您在第2步中获取到的API密钥。
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
// 初始化地图
MapView mapView = findViewById(R.id.mapView);
mapView.onCreate(savedInstanceState);
mapView.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(GoogleMap googleMap) {
// 在地图上添加标记
LatLng location = new LatLng(latitude, longitude);
MarkerOptions markerOptions = new MarkerOptions()
.position(location)
.title("标记标题")
.snippet("标记描述");
googleMap.addMarker(markerOptions);
// 将地图移动到标记位置
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(location, 15));
}
});
// 在Activity的生命周期方法中添加以下代码
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mapView.onPause();
}
@Override
protected void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mapView.onLowMemory();
}
这样就可以在谷歌地图Android应用上添加标记了。您可以根据自己的需求,设置标记的位置、标题、描述等信息。通过移动镜头,可以将地图定位到标记的位置。
推荐的腾讯云相关产品:腾讯位置服务(https://cloud.tencent.com/product/map)
领取专属 10元无门槛券
手把手带您无忧上云