在这里,我通过编写硬编码的纬度和经度来获取位置。我使用了map.setMyLocationEnabled(true);
,它给了我地图中的当前位置。但我也想让标记到达我当前的位置。
你能帮助我获得目前职位的经纬度吗?
private final LatLng LOCATION = new LatLng(22.7515085, 75.8860726);
map = ((SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
map.setMyLocationEnabled(true);
map.addMarker(new MarkerOptions().position(LOCATION).title("It is my current position"));
CameraUpdate update = CameraUpdateFactory.newLatLngZoom(LOCATION, 6);
map.animateCamera(update);