Google-earth-pro flyby error Solution

Google-Earth-Pro (7.3.4.8248-1)
has flyby-problem - doesnot fly to the point you enter in search box.

2 Likes

Solution:

/opt/google/earth/pro/googleearth
.
change file to this:

googleearth

googleearth

#!/bin/bash
# This script configures any environment prerequisites needed by Google Earth.
# Start Google Earth using this script rather than googleearth-bin directly.

# If you want to use an external copy of GPSBabel, you can specify it here.
# if [[ -z "$GPSBABEL" ]]; then export GPSBABEL="$(which gpsbabel)"; fi

# If DISPLAY is not set, try to autodetect a value.
if [[ -z "$DISPLAY" ]]; then
  echo "WARNING: DISPLAY environment variable is not set."
  x_displays=(/tmp/.X11-unix/X*)
  display="${x_displays[0]}"
  if [[ -e "$display" ]]; then
    export DISPLAY=":${display/*X/}"
    echo "        Found ${display}; setting DISPLAY=\"${DISPLAY}\"."
  else
    echo "        X11 display not detected; Google Earth may not run correctly."
  fi
fi

unset LC_ALL
export LC_NUMERIC=C

"$(dirname "$(readlink -f "$0")")/googleearth-bin" "$@"
2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.