이 그림과 함께 소스코드가 있는데 도저히 샘플 코드 봐도 몬하겠네요;;
// compass manager
mMapCompassManager =
new
NMapCompassManager(
this
);
// create my location overlay
mMyLocationOverlay = mOverlayManager.createMyLocationOverlay(mMapLocationManager, mMapCompassManager);
@Override
public
void
onCreate(Bundle savedInstanceState) {
super
.onCreate(savedInstanceState);
// create map view
mMapView =
NMapView(
// create parent view to rotate map view
mMapContainerView =
MapContainerView(
mMapContainerView.addView(mMapView);
// set the activity content to the map view
setContentView(mMapContainerView);
이렇게 코드가 나와있는데 어떻게 해야하죠??
샘플 보시면 메소드중에 startMyLocation()있을거에요... 그거 보시면 될텐데.
일단 mMapLocationManager.enableMyLocation(false); 요거 한줄이 내 위치 찾기 시작해서 보여줍니다.
내위치에 보여지는 이미지는 리소스프로바이더의 GetLocationDot에서 얻어오는걸로 보여지구요.
저도 아직 공부중이라... 자세한 답변은 못드리겠네요 ㅠ