Могу ли я сделать свой круг редактируемым и перетаскиваемым с помощью Android Studio (я имею в виду, что пользователь может изменить его размер и перетащить его на карту)? Если нет, какую программу / язык я могу использовать, чтобы создать приложение, которое позволит это? Я просматривал документацию по этой теме, и я не могу найти какой-либо код по этому вопросу, только для сценария Java.
Я работаю в AndroidStudio и не уверен, возможно ли объединить эти два языка в приложение? Я буду рад за любые отзывы
Вот код из MapsActivity.java, извините, если это беспорядок, но я новичок в программировании.
Также вот картинка, чтобы вы могли лучше понятьнад чем я работаю. введите описание изображения здесь
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
public GoogleMap mMap;
LocationManager locationManager;
@RequiresApi(api = Build.VERSION_CODES.M)
@Override
public 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);
locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// Activity#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for Activity#requestPermissions for more details.
return;
}
// check if the network provider is enabled
if (locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1, 1, new LocationListener() {
@Override
public void onLocationChanged(Location location) {
//get the latitude
double latitude = location.getLatitude();
//get the longitude
double longitude = location.getLongitude();
//instantiate the class, LatLng
LatLng latLng = new LatLng(latitude, longitude);
//Instantiate the class, Geocoder
Geocoder geocoder = new Geocoder(getApplicationContext());
try {
List<Address> adressList = geocoder.getFromLocation(latitude, longitude, 1);
String str = adressList.get(0).getLocality()+",";
str += adressList.get(0).getCountryName();
mMap.addMarker(new MarkerOptions().position(latLng).title(str));
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 10f));
} catch (IOException e) {
e.printStackTrace();
}
Circle circle = mMap.addCircle(new CircleOptions()
.center(new LatLng(latitude, longitude))
.radius(100.0)
.strokeColor(Color.RED)
.strokeWidth(3f)
.fillColor(Color.argb(70, 150, 50, 50)));
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
});
}
else if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
locationManager.requestLocationUpdates((LocationManager.GPS_PROVIDER), 1, 1, new LocationListener() {
@Override
public void onLocationChanged(Location location) {
//get the latitude
double latitude = location.getLatitude();
//get the longitude
double longitude = location.getLongitude();
//instantiate the class, LatLng
LatLng latLng = new LatLng(latitude, longitude);
//Instantiate the class, Geocoder
Geocoder geocoder = new Geocoder(getApplicationContext());
try {
List<Address> adressList = geocoder.getFromLocation(latitude, longitude, 1);
String str = adressList.get(0).getLocality()+",";
str += adressList.get(0).getCountryName();
mMap.addMarker(new MarkerOptions().position(latLng).title(str));
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 10f));
} catch (IOException e) {
e.printStackTrace();
}
Circle circle = mMap.addCircle(new CircleOptions()
.center(new LatLng(latitude, longitude))
.radius(100.0)
.strokeColor(Color.RED)
.strokeWidth(3f)
.fillColor(Color.argb(70, 150, 50, 50)));
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
});
}
}
/**
* Manipulates the map once available.
* This callback is triggered when the map is ready to be used.
* This is where we can add markers or lines, add listeners or move the camera. In this case,
* we just add a marker near Sydney, Australia.
* If Google Play services is not installed on the device, the user will be prompted to install
* it inside the SupportMapFragment. This method will only be triggered once the user has
* installed Google Play services and returned to the app.
*/
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
}
}
'' '