Hello All,
I am using Point function in Android code to pass values of latitude and longitude, If I sent values in 7 digits after decimal (30.7400728___76.7450737), below function converts it into 6 digits (30.740072___76.745073 ) which brings down quality of accuracy. Any suggestions or solutions will be helpful. I am pasting steps below:
com.esri.arcgisruntime.geometry.Point?
startPoint = Point(mapCenterLongitude!!.toDouble(), mapCenterLatitude!!.toDouble(), srWgs84)
val startLocation = Graphic(startPoint, locationMarker)
val toLatitudeLongitude = CoordinateFormatter.toLatitudeLongitude( mapPoint, CoordinateFormatter.LatitudeLongitudeFormat.DECIMAL_DEGREES, 7 )
Thanks,
Amit