# onMarkerPress send user to detail page

**URL:** https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251
**Category:** Questions about Thunkable X
**Tags:** beginner
**Created:** [January 23, 2022, 10:09pm UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251 "2022-01-23T22:09:58Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![delee\_techdeveloper](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/delee_techdeveloper/32/29616_2.png) [@delee\_techdeveloper](https://community.thunkable.com/u/delee_techdeveloper)
#### Post date: [January 23, 2022, 10:09pm UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/1 "2022-01-23T22:09:58Z")

</div>

I am trying to get the IconMarker to send user to detail page of the pressed marker : title, image, and description.

the problem is the data that is connected with the marker isn’t being displayed on the detail page

But I can’t figure it out, here is what I have so far (screenshots)

 ![Screen Shot 2022-01-23 at 4.09.16 PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/d/ed228a473989d6e5b146d50a2c09fa9b433f834c.jpeg)  
 ![Screen Shot 2022-01-23 at 4.09.27 PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/5/05fbd5557c85dc77d35b53f3f9feebcab5524023.png)

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [January 24, 2022, 1:15am UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/2 "2022-01-24T01:15:32Z")

</div>

According to the [documentation](https://docs.thunkable.com/map), the OnMarkerPress event has the properties “latitude” and “longitude”:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/3/a3d703a8d43ebe82e9a670ba153deb2fc30924aa.png)

But you are trying to get the property “TITLE” from it. Why? What value were you hoping to get there?

---

<div class="post-metadata">

### Author: ![delee\_techdeveloper](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/delee_techdeveloper/32/29616_2.png) [@delee\_techdeveloper](https://community.thunkable.com/u/delee_techdeveloper)
#### Post date: [January 24, 2022, 1:17am UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/3 "2022-01-24T01:17:10Z")

</div>

I want to send the marker information like the title/image/description of the row in airtable and send it to the detailed page.

so ultimately when the user click on the marker it will go to the detailed page

---

<div class="post-metadata">

### Author: ![delee\_techdeveloper](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/delee_techdeveloper/32/29616_2.png) [@delee\_techdeveloper](https://community.thunkable.com/u/delee_techdeveloper)
#### Post date: [January 24, 2022, 1:18am UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/4 "2022-01-24T01:18:01Z")

</div>

the documentation doesn’t tell me how to use the info that is attached to the marker and send it to another page which is what im trying to do

---

<div class="post-metadata">

### Author: ![manyone](https://avatars.discourse-cdn.com/v4/letter/m/ee59a6/32.png) [@manyone](https://community.thunkable.com/u/manyone)
#### Post date: [January 24, 2022, 1:57am UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/5 "2022-01-24T01:57:42Z")

</div>

presumably, your airtable contains the title/image/description PLUS latitude and longitude and url for that row.  
then you can use the lat,long values you got from onMarkerPress, and scan your airtable until you see a row with matching lat,long. you may have to use a fuzzy match (eg.round up all lat,long values to 3 or 4 digits, to eliminate rounding mismatches). when you’ve found the matching record, navigate to the corresponding url in that row.

---

<div class="post-metadata">

### Author: ![delee\_techdeveloper](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/delee_techdeveloper/32/29616_2.png) [@delee\_techdeveloper](https://community.thunkable.com/u/delee_techdeveloper)
#### Post date: [January 24, 2022, 2:08pm UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/6 "2022-01-24T14:08:51Z")

</div>

I’m sorry but I have no clue how to do that or are you just putting suggestions out there, how do you find a “fuzzy match”

---

<div class="post-metadata">

### Author: ![manyone](https://avatars.discourse-cdn.com/v4/letter/m/ee59a6/32.png) [@manyone](https://community.thunkable.com/u/manyone)
#### Post date: [January 24, 2022, 7:29pm UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/7 "2022-01-24T19:29:23Z")

</div>

let’s say your airbase row contains this lat/long: 37.695648924582756, -122.4859855426164  
but your map marker returns this lat/long: 37.69564, -122.48598  
they’re the same location but you won’t find it in airtable because the lat/long’s don’t match.  
so you make them the same format:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/5/a5a05d5d08d0c9c99c4ebe39411f3fbab236aec1.png)

and you’ll be able to match them:  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/4/d/4df563e0f0e3de9160354539f4349d49b8f135cd.png)

here’s the project, look for screen named fuzzy\_match  
[https://x.thunkable.com/copy/81e5d16d125eed13596cee1db940c37b](https://x.thunkable.com/copy/81e5d16d125eed13596cee1db940c37b)

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0f59f292712368bce16ff80133ae10de8a6f27e8.png) [@system](https://community.thunkable.com/u/system)
#### Post date: [April 24, 2022, 7:30pm UTC](https://community.thunkable.com/t/onmarkerpress-send-user-to-detail-page/1689251/8 "2022-04-24T19:30:06Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
