I have used HMS Map in my app. I am select some location using location kit search and displaying in map with custom marker. I can able to get Latitude and Longitude perfectly. Also i can display the selected location in map too before few days. But currently unable to show. I did not change anything in code. So what should be problem?
private fun setMapWithCurrentLoc(lastLocation: android.location.Location?) {
if (lastLocation != null) {
val location = LatLng(lastLocation.latitude, lastLocation.longitude)
if (map != null) {
map!!.clear()
map!!.addCircle(
CircleOptions()
.radius(500.0)
.center(location)
.clickable(false)
.fillColor(ContextCompat.getColor(requireContext(), R.color.purple_trans))
.strokeColor(ContextCompat.getColor(requireContext(), R.color.transparent))
.strokeWidth(1f)
)
map!!.addMarker(
MarkerOptions()
.position(location)
.icon(
BitmapDescriptorFactory.fromBitmap(
Utils.createCustomMarker(
requireContext(),
childUrl!!
)
)
)
.draggable(true)
)
map!!.animateCamera(
CameraUpdateFactory.newLatLngZoom(
LatLng(location.latitude, location.longitude),
currentZoomSetting.toFloat()
)
)
}
}
}
Try to change some of your code and test in a Activity with
com.huawei.hms.maps.SupportMapFragment
, it works okey:implementation 'com.huawei.hms:maps:6.0.0.301' could test this in your code to see if works.