我正在使用Android应用程序,该应用程序使用Google Maps API v2,并希望在点击事件中使用特定颜色标记地图上的特定区域。例如,当我点击印度时,覆盖该国家的区域应该是绿色的。
我已经在使用GroundOverlay
,但它需要一张图片才能在地图上显示某些内容,从而导致彩色区域不匹配。由于地图和图像都有自己的形状,因此不包括确切的区域。
有谁能告诉我如何更准确地为Android Google Maps API v2地图上色?
答案 0 :(得分:3)
像MaciejGórski一样,你必须在你的Map的Onclick事件中使用 polygon 。所以我花了一些时间给你并想出了一个解决方案。现在我只是在3点后添加了多边形可以修改它以满足您的需要。还可以更改颜色(使用RGBA颜色突出显示多边形内的区域)。
package com.mzubair.mapkey;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import android.widget.TextView;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.GoogleMap.OnMapClickListener;
import com.google.android.gms.maps.GoogleMap.OnMapLongClickListener;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Polygon;
import com.google.android.gms.maps.model.PolygonOptions;
public class MainActivity extends FragmentActivity implements OnMapClickListener, OnMapLongClickListener {
private GoogleMap googleMap;
private TextView tapTextView;
private PolygonOptions polygonOptions;
private Polygon polygon;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tapTextView = (TextView) findViewById(R.id.textView1);
polygonOptions = new PolygonOptions();
// Getting reference to the SupportMapFragment of activity_main.xml
SupportMapFragment fm = (SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map);
// Getting GoogleMap object from the fragment
googleMap = fm.getMap();
setUpMap();
}
private void setUpMap() //If the setUpMapIfNeeded(); is needed then...
{
googleMap.setOnMapClickListener((OnMapClickListener) this);
googleMap.setOnMapLongClickListener((OnMapLongClickListener) this);
}
@Override
public void onMapClick(LatLng point) {
tapTextView.setText("tapped, point=" + point);
polygonOptions.add(point);
countPolygonPoints();
}
@Override
public void onMapLongClick(LatLng point) {
tapTextView.setText("long pressed, point=" + point);
}
public void countPolygonPoints(){
if(polygonOptions.getPoints().size()>3){
polygonOptions.strokeColor(Color.RED);
polygonOptions.strokeWidth((float) 0.30);
polygonOptions.fillColor(Color.BLUE);
polygon = googleMap.addPolygon(polygonOptions);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
以下是使用此代码后的结果。
阅读详细 Post and download the Demo App Here
答案 1 :(得分:0)
您需要将创建此形状的所有点收集为List
LatLngs
并使用Polygon
。