Skip city as marker in Android
1 answer
I don't know if I got your question, but if you want to show a circle (area) there is a "Circle" element: https://developers.google.com/android/reference/com/google/android/gms/maps/ model / Circle
// Instantiates a new CircleOptions object and defines the center and radius
CircleOptions circleOptions = new CircleOptions()
.center(new LatLng(37.4, -122.1))
.radius(1000)); // In meters
// Get back the mutable Circle
Circle circle = myMap.addCircle(circleOptions);
Does it answer your question? If not, please provide more details on your needs!
+1
source to share