Add custom button on Mapbox's navigation view












0














I am using Mapbox to allow users to navigate between locations. I am using basic navigation feature as stated in the documentation (https://www.mapbox.com/ios-sdk/navigation/examples/basic/). This gives me the navigation view as below.
enter image description here



I would like to add a custom button at the bottom of the view. For this, I tried the following code.



Directions.shared.calculate(options) { (waypoints, routes, error) in

guard let route = routes?.first else {
self.showAlertMessage("No possible routes detected")
return
}

self.mapNavigationViewController = NavigationViewController(for: route)

self.mapNavigationViewController.delegate = self

self.present(self.mapNavigationViewController, animated: true, completion: {

let customButton = UIButton()
customButton.setTitle("Press", for: .normal)
customButton.translatesAutoresizingMaskIntoConstraints = false
customButton.backgroundColor = .blue
customButton.contentEdgeInsets = UIEdgeInsets(top: 10, left: 20, bottom: 10, right: 20)

self.mapNavigationViewController.view.addSubview(customButton)

customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
customButton.leftAnchor.constraint(equalTo: self.mapNavigationViewController.view.leftAnchor, constant: 0).isActive = true
customButton.rightAnchor.constraint(equalTo: self.mapNavigationViewController.view.rightAnchor, constant: 0).isActive = true

self.mapNavigationViewController.view.setNeedsLayout()

})
}


With this, I got the button as below.



enter image description here



Now, the next thing to be done is to shift the mapbox's view so that its bottom aligns with the custom button's top. How can I achieve this?










share|improve this question


















  • 1




    autolayout constraints
    – Daniel Springer
    Nov 23 at 6:36










  • I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
    – Sujal
    Nov 23 at 6:42










  • Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
    – Daniel Springer
    Nov 23 at 6:44












  • The button does not display with the above substitution.
    – Sujal
    Nov 23 at 7:24










  • Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
    – Daniel Springer
    Nov 23 at 7:49


















0














I am using Mapbox to allow users to navigate between locations. I am using basic navigation feature as stated in the documentation (https://www.mapbox.com/ios-sdk/navigation/examples/basic/). This gives me the navigation view as below.
enter image description here



I would like to add a custom button at the bottom of the view. For this, I tried the following code.



Directions.shared.calculate(options) { (waypoints, routes, error) in

guard let route = routes?.first else {
self.showAlertMessage("No possible routes detected")
return
}

self.mapNavigationViewController = NavigationViewController(for: route)

self.mapNavigationViewController.delegate = self

self.present(self.mapNavigationViewController, animated: true, completion: {

let customButton = UIButton()
customButton.setTitle("Press", for: .normal)
customButton.translatesAutoresizingMaskIntoConstraints = false
customButton.backgroundColor = .blue
customButton.contentEdgeInsets = UIEdgeInsets(top: 10, left: 20, bottom: 10, right: 20)

self.mapNavigationViewController.view.addSubview(customButton)

customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
customButton.leftAnchor.constraint(equalTo: self.mapNavigationViewController.view.leftAnchor, constant: 0).isActive = true
customButton.rightAnchor.constraint(equalTo: self.mapNavigationViewController.view.rightAnchor, constant: 0).isActive = true

self.mapNavigationViewController.view.setNeedsLayout()

})
}


With this, I got the button as below.



enter image description here



Now, the next thing to be done is to shift the mapbox's view so that its bottom aligns with the custom button's top. How can I achieve this?










share|improve this question


















  • 1




    autolayout constraints
    – Daniel Springer
    Nov 23 at 6:36










  • I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
    – Sujal
    Nov 23 at 6:42










  • Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
    – Daniel Springer
    Nov 23 at 6:44












  • The button does not display with the above substitution.
    – Sujal
    Nov 23 at 7:24










  • Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
    – Daniel Springer
    Nov 23 at 7:49
















0












0








0


1





I am using Mapbox to allow users to navigate between locations. I am using basic navigation feature as stated in the documentation (https://www.mapbox.com/ios-sdk/navigation/examples/basic/). This gives me the navigation view as below.
enter image description here



I would like to add a custom button at the bottom of the view. For this, I tried the following code.



Directions.shared.calculate(options) { (waypoints, routes, error) in

guard let route = routes?.first else {
self.showAlertMessage("No possible routes detected")
return
}

self.mapNavigationViewController = NavigationViewController(for: route)

self.mapNavigationViewController.delegate = self

self.present(self.mapNavigationViewController, animated: true, completion: {

let customButton = UIButton()
customButton.setTitle("Press", for: .normal)
customButton.translatesAutoresizingMaskIntoConstraints = false
customButton.backgroundColor = .blue
customButton.contentEdgeInsets = UIEdgeInsets(top: 10, left: 20, bottom: 10, right: 20)

self.mapNavigationViewController.view.addSubview(customButton)

customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
customButton.leftAnchor.constraint(equalTo: self.mapNavigationViewController.view.leftAnchor, constant: 0).isActive = true
customButton.rightAnchor.constraint(equalTo: self.mapNavigationViewController.view.rightAnchor, constant: 0).isActive = true

self.mapNavigationViewController.view.setNeedsLayout()

})
}


With this, I got the button as below.



enter image description here



Now, the next thing to be done is to shift the mapbox's view so that its bottom aligns with the custom button's top. How can I achieve this?










share|improve this question













I am using Mapbox to allow users to navigate between locations. I am using basic navigation feature as stated in the documentation (https://www.mapbox.com/ios-sdk/navigation/examples/basic/). This gives me the navigation view as below.
enter image description here



I would like to add a custom button at the bottom of the view. For this, I tried the following code.



Directions.shared.calculate(options) { (waypoints, routes, error) in

guard let route = routes?.first else {
self.showAlertMessage("No possible routes detected")
return
}

self.mapNavigationViewController = NavigationViewController(for: route)

self.mapNavigationViewController.delegate = self

self.present(self.mapNavigationViewController, animated: true, completion: {

let customButton = UIButton()
customButton.setTitle("Press", for: .normal)
customButton.translatesAutoresizingMaskIntoConstraints = false
customButton.backgroundColor = .blue
customButton.contentEdgeInsets = UIEdgeInsets(top: 10, left: 20, bottom: 10, right: 20)

self.mapNavigationViewController.view.addSubview(customButton)

customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
customButton.leftAnchor.constraint(equalTo: self.mapNavigationViewController.view.leftAnchor, constant: 0).isActive = true
customButton.rightAnchor.constraint(equalTo: self.mapNavigationViewController.view.rightAnchor, constant: 0).isActive = true

self.mapNavigationViewController.view.setNeedsLayout()

})
}


With this, I got the button as below.



enter image description here



Now, the next thing to be done is to shift the mapbox's view so that its bottom aligns with the custom button's top. How can I achieve this?







ios swift autolayout mapbox nslayoutconstraint






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 at 6:35









Sujal

457413




457413








  • 1




    autolayout constraints
    – Daniel Springer
    Nov 23 at 6:36










  • I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
    – Sujal
    Nov 23 at 6:42










  • Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
    – Daniel Springer
    Nov 23 at 6:44












  • The button does not display with the above substitution.
    – Sujal
    Nov 23 at 7:24










  • Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
    – Daniel Springer
    Nov 23 at 7:49
















  • 1




    autolayout constraints
    – Daniel Springer
    Nov 23 at 6:36










  • I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
    – Sujal
    Nov 23 at 6:42










  • Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
    – Daniel Springer
    Nov 23 at 6:44












  • The button does not display with the above substitution.
    – Sujal
    Nov 23 at 7:24










  • Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
    – Daniel Springer
    Nov 23 at 7:49










1




1




autolayout constraints
– Daniel Springer
Nov 23 at 6:36




autolayout constraints
– Daniel Springer
Nov 23 at 6:36












I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
– Sujal
Nov 23 at 6:42




I am facing difficulty in using auto layout constraints programmatically @DaniSpringer
– Sujal
Nov 23 at 6:42












Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
– Daniel Springer
Nov 23 at 6:44






Instead of customButton.bottomAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true. Why not customButton.topAnchor.constraint(equalTo: self.mapNavigationViewController.view.bottomAnchor, constant: 0).isActive = true
– Daniel Springer
Nov 23 at 6:44














The button does not display with the above substitution.
– Sujal
Nov 23 at 7:24




The button does not display with the above substitution.
– Sujal
Nov 23 at 7:24












Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
– Daniel Springer
Nov 23 at 7:49






Are you able to write code to affect the constraints of the map? Or is that out of your control? If yes: set map top to safe are top, map bottom to button top, and button bottom to safe area bottom.
– Daniel Springer
Nov 23 at 7:49














2 Answers
2






active

oldest

votes


















1














To achieve your objective, you will have to change the bottom constraint of the map view implemented in the library. So that you can set its bottom constraint equal to the top constraint of your customButton



See if you have access to the library's map view or its bottom constraint.






share|improve this answer





























    1














    I am able to accomplish the task following this Mapbox documentation.






    share|improve this answer





















      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441668%2fadd-custom-button-on-mapboxs-navigation-view%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      To achieve your objective, you will have to change the bottom constraint of the map view implemented in the library. So that you can set its bottom constraint equal to the top constraint of your customButton



      See if you have access to the library's map view or its bottom constraint.






      share|improve this answer


























        1














        To achieve your objective, you will have to change the bottom constraint of the map view implemented in the library. So that you can set its bottom constraint equal to the top constraint of your customButton



        See if you have access to the library's map view or its bottom constraint.






        share|improve this answer
























          1












          1








          1






          To achieve your objective, you will have to change the bottom constraint of the map view implemented in the library. So that you can set its bottom constraint equal to the top constraint of your customButton



          See if you have access to the library's map view or its bottom constraint.






          share|improve this answer












          To achieve your objective, you will have to change the bottom constraint of the map view implemented in the library. So that you can set its bottom constraint equal to the top constraint of your customButton



          See if you have access to the library's map view or its bottom constraint.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 at 7:18









          Damon

          519317




          519317

























              1














              I am able to accomplish the task following this Mapbox documentation.






              share|improve this answer


























                1














                I am able to accomplish the task following this Mapbox documentation.






                share|improve this answer
























                  1












                  1








                  1






                  I am able to accomplish the task following this Mapbox documentation.






                  share|improve this answer












                  I am able to accomplish the task following this Mapbox documentation.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 26 at 10:20









                  Sujal

                  457413




                  457413






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441668%2fadd-custom-button-on-mapboxs-navigation-view%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Contact image not getting when fetch all contact list from iPhone by CNContact

                      count number of partitions of a set with n elements into k subsets

                      A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks