Ich möchte ein Freihand-Polygon auf der Karte zeichnen. Ich habe mit einer einfachen Google Map begonnen und ein Polygon gezeichnet. Es funktioniert ordnungsgemäß. Jetzt suche ich nach Möglichkeiten, wie ein Benutzer ein Polygon zeichnen kann, indem er auf Punkte auf der Karte klickt und Markierungen in der Mitte der Punkte auf der Karte streckt Polygon.
Jetzt sieht meine Karte mit Polygon so aus:
und ich möchte implementieren:
Hier ist mein Code:
public class MapActivity extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
Button save_field;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_map);
// Retrieve the content view that renders the map.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
FrameLayout Frame_map = (FrameLayout) findViewById(R.id.frame_map);
Button btn_draw_State = (Button) findViewById(R.id.btn_draw_State);
final Boolean[] Is_MAP_Moveable = {false}; // to detect map is movable
// Button will change Map movable state
btn_draw_State.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Is_MAP_Moveable[0] = !Is_MAP_Moveable[0];
}
});
}
public GoogleMap getmMap() {
return mMap;
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
/*polygon should be declared as member of the fragment class if you want just one polygon at a time*/
final List<LatLng> latLngList = new ArrayList<>(); // list of polygons
final List<Marker> markerList = new ArrayList<>();
mMap.setOnMapClickListener(new GoogleMap.OnMapClickListener() {
@Override
public void onMapClick(final LatLng latLng) {
MarkerOptions markerOptions = new MarkerOptions(); //create marker options
markerOptions.position(latLng);
markerOptions.title(latLng.latitude + ":" + latLng.longitude);
mMap.clear();
mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
mMap.animateCamera(CameraUpdateFactory.newLatLng(latLng));
Marker marker = mMap.addMarker(markerOptions);
latLngList.add(latLng);
markerList.add(marker);
Polygon polygon = null;
if (polygon != null ) polygon.remove(); // remove the previously drawn polygon
PolygonOptions polygonOptions = new PolygonOptions().addAll(latLngList).clickable(true);
polygon = mMap.addPolygon(new PolygonOptions().addAll(latLngList).fillColor(Color.BLUE).strokeColor(Color.RED));//add new polygon
}
});
save_field = findViewById(R.id.save);
save_field.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
startActivity(new Intent(MapActivity.this, Save_Fields.class));
finish();
}
});
}
}
Ich habe viel zu diesem Thema geforscht und entwickelt, aber keine perfekte Möglichkeit gefunden, so etwas in Google Maps zu implementieren. Wenn jemand den Weg kennt, helfen Sie mir bitte, eine Lösung zu finden. Vielen Dank im Voraus:)
quelle
error: package rx.functions does not exist
diesen Fehler