我们已经看到在Android的Google Maps中实现Marker。现在,我们将在Google Maps上为该标记添加OnClickListner 。在本文中,我们将介绍将OnClickListner添加到Android中的Google Maps标记中。
我们将在本文中构建什么?
我们将构建一个简单的应用程序,在该应用程序中,我们将在地图上的特定位置显示标记,并将OnClickListner添加到Google Maps的标记中。下面给出了一个示例GIF,以了解我们将在本文中做些什么。注意,我们将使用Java语言实现该项目。
分步实施
步骤1:创建一个新项目
要在Android Studio中创建新项目,请参阅如何在Android Studio中创建/启动新项目。请注意,选择Java作为编程语言。确保在创建新项目时选择“地图活动”。
第2步:生成用于使用Google Maps的API密钥
要生成Maps的API密钥,您可以参考 如何生成用于在Android中使用Google Maps的API密钥。生成Google Maps的API密钥后。我们必须将此密钥添加到我们的项目中。要在我们的应用程序中添加此密钥,请导航至values文件夹> google_maps_api.xml文件,并在第23行中,您必须在YOUR_API_KEY位置添加API密钥。
第3步:将OnClickListner添加到Google Maps的标记中
转到MapsActivity。 Java文件并参考以下代码。以下是MapsActivity的代码。 Java文件。在代码内部添加了注释,以更详细地了解代码。
Java
import android.os.Bundle;
import android.widget.Toast;
import androidx.fragment.app.FragmentActivity;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import java.util.ArrayList;
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
// below are the latitude and longitude
// of 4 different locations.
LatLng sydney = new LatLng(-34, 151);
LatLng TamWorth = new LatLng(-31.083332, 150.916672);
LatLng NewCastle = new LatLng(-32.916668, 151.750000);
LatLng Brisbane = new LatLng(-27.470125, 153.021072);
// two array list for our lat long and location Name;
private ArrayList latLngArrayList;
private ArrayList locationNameArraylist;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
// initializing our array lists.
latLngArrayList = new ArrayList<>();
locationNameArraylist = new ArrayList<>();
// on below line we are adding
// data to our array list.
latLngArrayList.add(sydney);
locationNameArraylist.add("Sydney");
latLngArrayList.add(TamWorth);
locationNameArraylist.add("TamWorth");
latLngArrayList.add(NewCastle);
locationNameArraylist.add("New Castle");
latLngArrayList.add(Brisbane);
locationNameArraylist.add("Brisbase");
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
// below line is to add marker to google maps
for (int i = 0; i < latLngArrayList.size(); i++) {
// adding marker to each location on google maps
mMap.addMarker(new MarkerOptions().position(latLngArrayList.get(i)).title("Marker in " + locationNameArraylist.get(i)));
// below line is use to move camera.
mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
// adding on click listener to marker of google maps.
mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker) {
// on marker click we are getting the title of our marker
// which is clicked and displaying it in a toast message.
String markerName = marker.getTitle();
Toast.makeText(MapsActivity.this, "Clicked location is " + markerName, Toast.LENGTH_SHORT).show();
return false;
}
});
}
}
添加此代码后。现在运行您的应用程序,并查看该应用程序的输出。
输出:
Note: In the Google Developer Console (https://console.developers.google.com), ensure that the “Google Maps Android API v2” is enabled. And also ensure that your API Key exists.