Show on map (1011)
[
3.basecamp.com
https://3.basecamp.com/5190892/projects/29556046
](https://3.basecamp.com/5190892/projects/29556046)
Feature Implementation
UI
_20250826194645_image__4___1__9bf03295_8883.png)
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}`;
},