void SearchQueryPerformer::PerformSearchQuery(const std::string& query,
         bool isCategory,
         Eegeo::Space::LatLongAltitude& location)
 {
     const float radius = GetSearchRadius(m_cameraController.GetRenderCamera());
     PerformSearchQuery(query, isCategory, location, radius);
 }
 void SearchQueryPerformer::PerformSearchQuery(const std::string& query,
         bool isTag,
         bool tryInteriorSearch,
         const Eegeo::Space::LatLongAltitude& location,
         bool startAtGPSLocation,
         const std::string& interiorId)
 {
     const float radius = GetSearchRadius(m_cameraController);
     PerformSearchQuery(query, isTag, tryInteriorSearch, location, radius, startAtGPSLocation, interiorId);
 }
 void SearchQueryPerformer::PerformSearchQuery(const std::string& query, bool isCategory)
 {
     Eegeo::Space::LatLongAltitude location = Eegeo::Space::LatLongAltitude::FromECEF(m_cameraController.GetEcefInterestPoint());
     PerformSearchQuery(query, isCategory, location);
 }
 void SearchQueryPerformer::PerformSearchQuery(const std::string& query, bool isCategory, bool tryInteriorSearch, float radius)
 {
     const Eegeo::Space::LatLongAltitude& location = Eegeo::Space::LatLongAltitude::FromECEF(m_cameraController.GetEcefInterestPoint());
     PerformSearchQuery(query, isCategory, tryInteriorSearch, location, radius);
 }
 void SearchQueryPerformer::PerformSearchQuery(const std::string& query, bool isTag, bool tryInteriorSearch, float radius, const std::string& interiorId)
 {
     Eegeo::Space::LatLongAltitude location = Eegeo::Space::LatLongAltitude::FromECEF(m_cameraController.GetCameraState().InterestPointEcef());
     PerformSearchQuery(query, isTag, tryInteriorSearch, location, radius, false, interiorId);
 }