# Need helping adding nearby providers/locations on map

**URL:** https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211
**Category:** Questions about Thunkable X
**Created:** [April 11, 2020, 10:31pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211 "2020-04-11T22:31:32Z")
**Posts on this page:** 11
**Page:** 1

<div class="post-metadata">

### Author: ![vaneshaharigq67x](https://avatars.discourse-cdn.com/v4/letter/v/ebca7d/32.png) [@vaneshaharigq67x](https://community.thunkable.com/u/vaneshaharigq67x)
#### Post date: [April 11, 2020, 10:31pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/1 "2020-04-11T22:31:32Z")

</div>

Hey there, Based on the code here figured out how to show my own location with a marker. However, how would I add to the code if I also want it to display a list of doctor providers or restaurants etc.

 ![Locationsensor](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/9/79e4e80893973fb125c4213cd8a535af36d62b09.jpeg) for example near my location? thanks

---

<div class="post-metadata">

### Author: ![Deluxe](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/deluxe/32/30016_2.png) [@Deluxe](https://community.thunkable.com/u/Deluxe)
#### Post date: [April 11, 2020, 11:01pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/2 "2020-04-11T23:01:41Z")

</div>

Let’s start with the basics. What is your source going to be? A fixed table? API calls to i.e. Google or Yelp? Firebase? Other?

---

<div class="post-metadata">

### Author: ![vaneshaharigq67x](https://avatars.discourse-cdn.com/v4/letter/v/ebca7d/32.png) [@vaneshaharigq67x](https://community.thunkable.com/u/vaneshaharigq67x)
#### Post date: [April 11, 2020, 11:31pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/3 "2020-04-11T23:31:27Z")

</div>

Thanks I already have a firebase link to database and url setup since I have a user login and password screen first. I am working on this for a middle school project so sorry for basic questions its my first time.

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [April 12, 2020, 1:36pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/4 "2020-04-12T13:36:43Z")

</div>

You need to have a list of coordinates, and associated info.

Do you have those info?

---

<div class="post-metadata">

### Author: ![jaythemanchs](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jaythemanchs/32/92809_2.png) [@jaythemanchs](https://community.thunkable.com/u/jaythemanchs)
#### Post date: [May 20, 2020, 11:10am UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/5 "2020-05-20T11:10:07Z")

</div>

I could help.

---

<div class="post-metadata">

### Author: ![jaythemanchs](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jaythemanchs/32/92809_2.png) [@jaythemanchs](https://community.thunkable.com/u/jaythemanchs)
#### Post date: [May 22, 2020, 9:17am UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/7 "2020-05-22T09:17:57Z")

</div>

you should go to google maps style wizard and change the labels so that only government services are visible.

---

<div class="post-metadata">

### Author: ![jaythemanchs](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jaythemanchs/32/92809_2.png) [@jaythemanchs](https://community.thunkable.com/u/jaythemanchs)
#### Post date: [May 23, 2020, 6:46am UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/8 "2020-05-23T06:46:47Z")

</div>

Paste this code into the “custom map string” field in advanced map settings.

[  
{  
“featureType”: “administrative”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.attraction”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.business”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.government”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.park”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.place\_of\_worship”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.school”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.sports\_complex”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.arterial”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.highway”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.local”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.line”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.airport”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.bus”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.rail”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
}  
]

---

<div class="post-metadata">

### Author: ![jaythemanchs](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jaythemanchs/32/92809_2.png) [@jaythemanchs](https://community.thunkable.com/u/jaythemanchs)
#### Post date: [May 23, 2020, 6:50am UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/9 "2020-05-23T06:50:51Z")

</div>

Sorry, this code.

[  
{  
“featureType”: “administrative”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “administrative”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.attraction”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.attraction”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.business”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.business”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.government”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.government”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.park”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.park”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.place\_of\_worship”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.place\_of\_worship”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.school”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.school”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.sports\_complex”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “poi.sports\_complex”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.arterial”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.arterial”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.highway”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.highway”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.local”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “road.local”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit”,  
“elementType”: “labels.icon”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.line”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.airport”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.bus”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
},  
{  
“featureType”: “transit.station.rail”,  
“elementType”: “labels.text”,  
“stylers”: [  
{  
“visibility”: “off”  
}  
]  
}  
]

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [May 23, 2020, 1:11pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/10 "2020-05-23T13:11:29Z")

</div>

Nice! 🦾🦾🦾Does this automatically add markers? Or does this just take stuff off the map?

---

<div class="post-metadata">

### Author: ![jaythemanchs](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jaythemanchs/32/92809_2.png) [@jaythemanchs](https://community.thunkable.com/u/jaythemanchs)
#### Post date: [May 24, 2020, 8:57pm UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/11 "2020-05-24T20:57:12Z")

</div>

It takes the labels of the map

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 11:28am UTC](https://community.thunkable.com/t/need-helping-adding-nearby-providers-locations-on-map/563211/12 "2024-11-08T11:28:59Z")

</div>


