// // Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /** * @file FLoc_Config.h * @brief This header file contains the constants used in the location namespace internally. * */ #ifndef _FLOC_INTERNAL_CONFIG_H_ #define _FLOC_INTERNAL_CONFIG_H_ namespace Tizen { namespace Locations { const int MAX_WAIT_TIME_FOR_SYNC_LOC = 5; const int MIN_LOCATION_UPDATE_INTERVAL = 1; const int DEFAULT_WAITING_TIME_FOR_FIXING_GPS_LOCATION = 40; const int DEFAULT_WAITING_TIME_FOR_FIXING_WPS_LOCATION = 10; const int DEFAULT_AVG_SPEED = 20; //Take average car speed as 72 km/hr = 20 m/s const int DEFAULT_REGION_MONITORING_CYCLE_INTERVAL = 5; const int DEFAULT_DISTANCE_CHECKING_INTERVAL = 10; const int DEFAULT_THRESHOLD_LOC_VALIDITY_TIME_OUT = 3; }} // Tizen::Locations #endif //_FLOC_INTERNAL_CONFIG_H_