从现在开始,我无法获取地图V1的API密钥,我需要将我的代码迁移到v2。所以我需要的是当用户点击地图上的一个图钉来显示一个对话框(包含该点的名称和一个按钮)。如果他点击按钮,我会打开一个新活动,显示有关该地点的信息。我已成功完成了地图叠加,我在构造函数中传递了自定义数据,并且我拥有了所需的一切。但是如何使用地图v2的标记来完成?我找不到任何有关自定义对话框的信息。
答案 0 :(得分:0)
无法通过按钮实现InfoWindow
,因为Google Map
会自动将所有内容呈现给图片。您唯一能听到点击的是InfoWindow
它自己。
以下是用于创建InfoWindow
并分配OnInfoWindowClickListener
的代码,其中有评论可以解释您的步骤。
// Setting a custom info window adapter for the google map
map.setInfoWindowAdapter(new InfoWindowAdapter() {
// Use default InfoWindow frame
@Override
public View getInfoWindow(Marker args) {
return null;
}
// Defines the contents of the InfoWindow
@Override
public View getInfoContents(Marker args) {
// Getting view from the layout file info_window_layout
View v = getLayoutInflater().inflate(R.layout.info_window_layout, null);
// Getting the position from the marker
clickMarkerLatLng = args.getPosition();
TextView title = (TextView) v.findViewById(R.id.tvTitle);
title.setText(args.getTitle());
//Setting OnInfoWindowClickListener
map.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {
public void onInfoWindowClick(Marker marker)
{
if (SGTasksListAppObj.getInstance().currentUserLocation!=null)
{
if (String.valueOf(SGTasksListAppObj.getInstance().currentUserLocation.getLatitude()).substring(0, 8).contains(String.valueOf(clickMarkerLatLng.latitude).substring(0, 8)) &&
String.valueOf(SGTasksListAppObj.getInstance().currentUserLocation.getLongitude()).substring(0, 8).contains(String.valueOf(clickMarkerLatLng.longitude).substring(0, 8)))
{
Toast.makeText(getApplicationContext(), "This your current location, navigation is not needed.", Toast.LENGTH_SHORT).show();
}
else
{
FlurryAgent.onEvent("Start navigation window was clicked from daily map");
tasksRepository = SGTasksListAppObj.getInstance().tasksRepository.getTasksRepository();
for (Task tmptask : tasksRepository)
{
String tempTaskLat = String.valueOf(tmptask.getLatitude());
String tempTaskLng = String.valueOf(tmptask.getLongtitude());
Log.d(TAG, String.valueOf(tmptask.getLatitude())+","+String.valueOf(clickMarkerLatLng.latitude).substring(0, 8));
if (tempTaskLat.contains(String.valueOf(clickMarkerLatLng.latitude).substring(0, 8)) && tempTaskLng.contains(String.valueOf(clickMarkerLatLng.longitude).substring(0, 8)))
{
task = tmptask;
break;
}
}
Intent intent = new Intent(getApplicationContext() ,RoadDirectionsActivity.class);
intent.putExtra(TasksListActivity.KEY_ID, task.getId());
startActivity(intent);
}
}
else
{
Toast.makeText(getApplicationContext(), "Your current location could not be found,\nNavigation is not possible.", Toast.LENGTH_SHORT).show();
}
}
});
// Returning the view containing InfoWindow contents
return v;
}
});
答案 1 :(得分:0)
自定义对话框和地图本身是两个完全独立的实体,一个实体的开发不会影响另一个实体的开发。
你将使用一个OnMarkerClickListener(here the link to the docs),每当你收到它时,你甚至可以像以前一样创建自定义对话框。
答案 2 :(得分:0)
您可以使用
添加标记Marker marker = mMap.addMarker(new MarkerOptions().position(pos1).title("title").snippet("description"));
如果点击标记,将打开一个信息窗口,其中包含“标题”和“描述”,即使您可以通过扩展InfoWindowAdapter类来自定义此信息窗口,然后将该infoWindowAdapter设置为GoogleMap obj。了解更多信息请参阅以下链接 Google Map API V2