Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Show on map (1011)

[

3.basecamp.com

https://3.basecamp.com/5190892/projects/29556046

](https://3.basecamp.com/5190892/projects/29556046)

Feature Implementation

UI

Where did you find this feature?

on restaurant page, if user click that image should redirect to the restaurant location on google maps.

Frontend Implementation

change href button with google maps link using restaurant langitude and longitude:

restaurantDirection() {
      if (this.lat && this.lng) {
        return `http://www.google.com/maps?q=${this.lat},${this.lng}`;
      }
      return `/restaurants/search?locations[]=${this.location.id}`;
    },