Fixed
Status Update
Comments
sa...@gmail.com <sa...@gmail.com> #2
Please reslove this bug soon!!
al...@gmail.com <al...@gmail.com> #3
I confirm, this is really annoying:
MarkerOptions options = new MarkerOptions()
.position(new LatLng(place.getLat(), place.getLng()))
.title(place.getTitle())
.snippet(place.getDescription())
.icon(icon)
.visible(false);
getMap().addMarker(options);
The marker is visible on the map.
MarkerOptions options = new MarkerOptions()
.position(new LatLng(place.getLat(), place.getLng()))
.title(place.getTitle())
.snippet(place.getDescription())
.icon(icon)
.visible(false);
getMap().addMarker(options);
The marker is visible on the map.
cb...@google.com <cb...@google.com> #4
This issue will be fixed in the next release of the Maps Android API.
cb...@google.com <cb...@google.com>
[Deleted User] <[Deleted User]> #5
it is not fixed
val options = MarkerOptions()
.position(location)
.title(user.userId.toString())
.draggable(false)
.icon(BitmapDescriptorFactory.fromBitmap(bitmap))
.anchor(0.5f, 1.0f)
.zIndex(1f)
val marker = getMap().addMarker(options)
marker.isVisible = false
and after that marker is still visible on map
val options = MarkerOptions()
.position(location)
.title(user.userId.toString())
.draggable(false)
.icon(BitmapDescriptorFactory.fromBitmap(bitmap))
.anchor(0.5f, 1.0f)
.zIndex(1f)
val marker = getMap().addMarker(options)
marker.isVisible = false
and after that marker is still visible on map
Description