Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的android应用程序中,我必须通过用户在mapview中定位标记来获取用户位置,然后在mapview下面的textview将显示经度和纬度,怎么做
在我的代码中,我使用此代码获取值纬度和经度
LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
在此之后,您可以在地图上创建标记
place_on_map = new MarkerOptions().position(latLng);