안녕하세요 안드로이드 공부중인데요.
getIntent로 위도, 경도를 넘겨받았는데요

Intent intent = getIntent();
final String strLat = intent.getStringExtra("Lat");
final String strLon = intent.getStringExtra("Lon");
이런식으로요..

위도는 strLat, 경도는 strLon에 저장이 되있습니다.

이 변수을  GeoPoint()에 넣을려고 그러는데 어떻게 해야하나요...