Add variables
This commit is contained in:
parent
48e3798dde
commit
5f07cd9638
1 changed files with 8 additions and 6 deletions
|
@ -278,18 +278,20 @@ public class TrackSegmentFragment extends OsmAndListFragment {
|
|||
imageView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
WptPt pointToShow = getGpx() != null ? getGpx().findPointToShow() : null;
|
||||
GpxDataItem gpxDataItem = getGpxDataItem();
|
||||
GPXFile gpx = getGpx();
|
||||
WptPt pointToShow = gpx != null ? gpx.findPointToShow() : null;
|
||||
if (pointToShow != null) {
|
||||
LatLon location = new LatLon(pointToShow.getLatitude(),
|
||||
pointToShow.getLongitude());
|
||||
final OsmandSettings settings = app.getSettings();
|
||||
String trackName = "";
|
||||
if (getGpx().showCurrentTrack) {
|
||||
if (gpx.showCurrentTrack) {
|
||||
trackName = getString(R.string.shared_string_currently_recording_track);
|
||||
} else if (getGpxDataItem() != null) {
|
||||
trackName = getGpxDataItem().getFile().getName();
|
||||
} else if (getGpx() != null) {
|
||||
trackName = getGpx().path;
|
||||
} else if (gpxDataItem != null) {
|
||||
trackName = gpxDataItem.getFile().getName();
|
||||
} else {
|
||||
trackName = gpx.path;
|
||||
}
|
||||
settings.setMapLocationToShow(location.getLatitude(), location.getLongitude(),
|
||||
settings.getLastKnownMapZoom(),
|
||||
|
|
Loading…
Reference in a new issue