From c3295199214617e4bfd8b0c3b9d790a27add19f8 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 17 Oct 2012 16:06:11 +0300 Subject: [PATCH] [ios] Fixed not appearing arrow --- iphone/Maps/Classes/SearchVC.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/iphone/Maps/Classes/SearchVC.mm b/iphone/Maps/Classes/SearchVC.mm index 28e30ce97e..22b529e72b 100644 --- a/iphone/Maps/Classes/SearchVC.mm +++ b/iphone/Maps/Classes/SearchVC.mm @@ -395,6 +395,7 @@ static void OnSearchResultCallback(search::Results const & res) // Show arrow for valid azimut and if feature is not a continent (flag is exist) compass.showArrow = (azimut >= 0.0 && flag) ? YES : NO; + compass.angle = azimut; } return cell; }