Show on map (1011)
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 latitude 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}`;
},