// Utility functions called from OnGUI:

        void FlyToCountryAndBlinkIt(string countryName)
        {
            int   countryIndex = map.GetCountryIndex(countryName);
            float fitZoomLevel = map.GetCountryZoomExtents(countryIndex, true);

            map.FlyToCountry(countryIndex, 2.0f, fitZoomLevel);
            map.BlinkCountry(countryName, Color.green, Color.black, 4.0f, 2.5f);
        }