我在地图上显示用户的位置,但我想做的是标记相同
在 onCreate 我得到用户的位置:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Get a MapView instance from layout
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
latitud=location.getLatitude();
longitud=location.getLongitude();
mapView = findViewById(R.id.map_view);
mapView.onCreate(savedInstanceState);
handleAndroidPermissions();
}
然后我在加载地图时要做的就是显示它并打上标记,我这样做如下:
private void loadMapScene() {
// Load a scene from the SDK to render the map with a map style.
mapView.getMapScene().loadScene(MapStyle.NORMAL_DAY, new MapScene.LoadSceneCallback() {
@Override
public void onLoadScene(@Nullable MapScene.ErrorCode errorCode) {
if (errorCode == null) {
mapObjectsExample = new MapObjectsExample(mapView);
GeoCoordinates geoCoordinates=new GeoCoordinates( latitud,longitud);
MapImage mapImage = MapImageFactory.fromResource(getApplicationContext().getResources(), R.drawable.here_car);
MapMarker mapMarker = new MapMarker( geoCoordinates, mapImage);
mapView.getMapScene().addMapMarker(mapMarker);
mapView.getCamera().setTarget(new GeoCoordinates( latitud,longitud));
mapView.getCamera().setZoomLevel(15);
} else {
Log.d(TAG, "onLoadScene failed: " + errorCode.toString());
}
}
});
}
但我得到:
MapMarker(long, java.lang.Object)' 在 'com.here.sdk.mapviewlite.MapMarker' 中具有受保护的访问权限
问题出在这句话中:
MapMarker mapMarker = new MapMarker( geoCoordinates, mapImage);