diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 935aaf75c7..379f232c6e 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -21,10 +21,10 @@ typedef FrameWork framework_t; @synthesize m_iconTimer; @synthesize m_iconSequenceNumber; - // @TODO Make m_framework and m_storage MapsAppDelegate properties instead of global variables. - framework_t * m_framework = NULL; - shared_ptr m_locator; - storage::Storage m_storage; +// @TODO Make m_framework and m_storage MapsAppDelegate properties instead of global variables. +framework_t * m_framework = NULL; +shared_ptr m_locator; +storage::Storage m_storage; - (void) ZoomToRect: (m2::RectD const &) rect { @@ -55,28 +55,21 @@ typedef FrameWork framework_t; - (IBAction)OnMyPositionClicked:(id)sender { - if (m_locator->mode() == Locator::EPreciseMode) - { - m_locator->setMode(Locator::ERoughMode); - ((UIBarButtonItem *)sender).style = UIBarButtonItemStyleBordered; - } - else - { - m_locator->setMode(Locator::EPreciseMode); - m_isDirtyPosition = true; + if (m_locator->isRunning()) + { + m_locator->stop(); + m_framework->StopLocator(); + ((UIBarButtonItem*) sender).style = UIBarButtonItemStyleBordered; + } + else + { + m_framework->StartLocator(Locator::EPreciseMode); + m_locator->start(Locator::EPreciseMode); + m_isDirtyPosition = true; - ((UIBarButtonItem *)sender).style = UIBarButtonItemStyleDone; - -/* m_iconSequenceNumber = 0; - m_iconTimer = [NSTimer scheduledTimerWithTimeInterval:0.1f - target:self - selector:@selector(UpdateIcon:) - userInfo:nil - repeats:NO]; - - NSLog(@"IconTimerStart");*/ - ((UIBarButtonItem *)sender).image = [UIImage imageNamed:@"location-search.png"]; - } + ((UIBarButtonItem*)sender).style = UIBarButtonItemStyleDone; + ((UIBarButtonItem*)sender).image = [UIImage imageNamed:@"location-search.png"]; + } } - (void) OnChangeLocatorMode:(Locator::EMode) oldMode @@ -84,14 +77,8 @@ typedef FrameWork framework_t; { if (newMode == Locator::ERoughMode) { -/* if (m_iconTimer != nil) - { - [m_iconTimer invalidate]; - m_iconTimer = nil; - } - */ m_myPositionButton.image = [UIImage imageNamed:@"location.png"]; - m_myPositionButton.style = UIBarButtonItemStyleBordered; +// m_myPositionButton.style = UIBarButtonItemStyleBordered; } } diff --git a/iphone/Maps/Classes/UserLocationController.mm b/iphone/Maps/Classes/UserLocationController.mm index bac3843a0a..1a3c3c6d0d 100644 --- a/iphone/Maps/Classes/UserLocationController.mm +++ b/iphone/Maps/Classes/UserLocationController.mm @@ -28,15 +28,16 @@ - (void) dealloc { - [self Stop]; +// [self Stop]; [self.locationManager release]; [super dealloc]; } -- (void) Start +/*- (void) Start { // active = YES; [self.locationManager startUpdatingLocation]; + self.locationManager.distanceFilter = kCLDistanceFilterNone; if ([CLLocationManager headingAvailable]) { self.locationManager.headingFilter = 1; @@ -51,7 +52,7 @@ [self.locationManager stopUpdatingLocation]; [self.locationManager stopUpdatingHeading]; // active = NO; -} +}*/ - (void) locationManager: (CLLocationManager *) manager didUpdateHeading: (CLHeading *) newHeading diff --git a/iphone/Maps/IPhoneLocator.mm b/iphone/Maps/IPhoneLocator.mm index 18cb25d69b..3af9b74b1e 100644 --- a/iphone/Maps/IPhoneLocator.mm +++ b/iphone/Maps/IPhoneLocator.mm @@ -62,25 +62,27 @@ namespace iphone { ::Locator::setMode(mode); + [m_locationController.locationManager startUpdatingLocation]; + if (mode == ERoughMode) - [m_locationController.locationManager startMonitoringSignificantLocationChanges]; + m_locationController.locationManager.distanceFilter = 100; else - [m_locationController.locationManager startUpdatingLocation]; + m_locationController.locationManager.distanceFilter = kCLDistanceFilterNone; if ([CLLocationManager headingAvailable]) { m_locationController.locationManager.headingFilter = 1; [m_locationController.locationManager startUpdatingHeading]; } + + ::Locator::start(mode); } void Locator::stop() { - if (mode() == ERoughMode) - [m_locationController.locationManager stopMonitoringSignificantLocationChanges]; - else - [m_locationController.locationManager stopUpdatingLocation]; - + ::Locator::stop(); + [m_locationController.locationManager stopUpdatingLocation]; + if ([CLLocationManager headingAvailable]) [m_locationController.locationManager stopUpdatingHeading]; } @@ -92,15 +94,9 @@ namespace iphone callOnChangeModeFns(oldMode, mode); if (mode == ERoughMode) - { - [m_locationController.locationManager stopUpdatingLocation]; - [m_locationController.locationManager startMonitoringSignificantLocationChanges]; - } + m_locationController.locationManager.distanceFilter = 100; else - { - [m_locationController.locationManager stopMonitoringSignificantLocationChanges]; - [m_locationController.locationManager startUpdatingLocation]; - } + m_locationController.locationManager.distanceFilter = kCLDistanceFilterNone; } void Locator::locationUpdate(m2::PointD const & pt, double errorRadius, double locTimeStamp, double curTimeStamp) diff --git a/map/framework.hpp b/map/framework.hpp index 04c9a8a9f5..dee56c4ffd 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -250,8 +250,22 @@ public: m_locator->addOnUpdateLocationFn(bind(&this_type::UpdateLocation, this, _1, _2, _3, _4)); m_locator->addOnUpdateHeadingFn(bind(&this_type::UpdateHeading, this, _1, _2, _3)); m_locator->addOnChangeModeFn(bind(&this_type::ChangeLocatorMode, this, _1, _2)); - m_locator->start(Locator::ERoughMode); +// m_locator->start(Locator::ERoughMode); } + + void StartLocator(Locator::EMode mode) + { + if (mode == Locator::EPreciseMode) + m_doCenterViewport = true; + } + + void StopLocator() + { + m_informationDisplay.enablePosition(false); + m_doCenterViewport = false; + Invalidate(); + } + bool IsEmptyModel() { diff --git a/map/locator.cpp b/map/locator.cpp index fa9b946b89..a5bcf15d70 100644 --- a/map/locator.cpp +++ b/map/locator.cpp @@ -1,6 +1,12 @@ #include "../base/SRC_FIRST.hpp" #include "locator.hpp" +Locator::Locator() : m_isRunning(false) +{} + +Locator::~Locator() +{} + void Locator::setMode(EMode mode) { m_mode = mode; @@ -11,6 +17,21 @@ Locator::EMode Locator::mode() const return m_mode; } +void Locator::start(Locator::EMode /*mode*/) +{ + m_isRunning = true; +} + +void Locator::stop() +{ + m_isRunning = false; +} + +bool Locator::isRunning() const +{ + return m_isRunning; +} + void Locator::callOnChangeModeFns(EMode oldMode, EMode newMode) { list handlers = m_onChangeModeFns; diff --git a/map/locator.hpp b/map/locator.hpp index f7017dfcaa..9df37791a6 100644 --- a/map/locator.hpp +++ b/map/locator.hpp @@ -27,8 +27,14 @@ private: EMode m_mode; + bool m_isRunning; + public: + Locator(); + virtual ~Locator(); + + bool isRunning() const; virtual void start(EMode mode) = 0; virtual void stop() = 0; virtual void setMode(EMode mode) = 0;