Skip to content

Commit ab247ed

Browse files
author
Alfiya Tarasenko
committed
Improve visuals
1 parent 8e08b19 commit ab247ed

1 file changed

Lines changed: 19 additions & 7 deletions

File tree

README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
![License](https://img.shields.io/github/license/geoapify/maps-api-code-samples)
33
![GitHub Repo Stars](https://img.shields.io/github/stars/geoapify/maps-api-code-samples?style=social)
44

5-
65
Welcome to the **Geoapify Location Platform Code Samples** repository! This project provides a growing collection of code samples and demos showcasing how to work with Geoapify's powerful geospatial APIs. Whether you're building mapping applications, calculating routes, or integrating geocoding, these samples will help you get started quickly.
76

87
## 🧩 Available Code Samples
@@ -28,6 +27,7 @@ Welcome to the **Geoapify Location Platform Code Samples** repository! This proj
2827
* [Fetch Places with Grid and Pagination](#python-fetch-places-with-grid-and-pagination)
2928
* [Route Planner Result Processor](#python-route-planner-result-processor)
3029

30+
---
3131

3232
### JavaScript: [Printable Route Directions](https://github.com/geoapify/maps-api-code-samples/tree/main/javascript/printable-route-directions)
3333

@@ -50,8 +50,6 @@ Uses JavaScript and HTML to call the Geoapify Routing API for route data and the
5050
**Demo:**
5151
👉 [Printable Route Directions – Live Demo](https://geoapify.github.io/maps-api-code-samples/javascript/printable-route-directions/demo.html)
5252

53-
[↑ Back to top](#table-of-contents)
54-
5553
---
5654

5755
### Node.js: [Batch Geocoding with Rate Limiting](https://github.com/geoapify/maps-api-code-samples/tree/main/node/geocoding-with-RPS-limit-respect)
@@ -73,6 +71,8 @@ Reads addresses from a text file and sends geocoding requests to the Geoapify AP
7371
- [Geoapify Geocoding API](https://www.geoapify.com/geocoding-api/)
7472
- [@geoapify/request-rate-limiter](https://www.npmjs.com/package/@geoapify/request-rate-limiter)
7573

74+
---
75+
7676
### Node.js: [Batch Reverse Geocoding](https://github.com/geoapify/maps-api-code-samples/tree/main/node/reverse-geocoding-lat-lon-to-address)
7777

7878
**What it does:**
@@ -93,7 +93,6 @@ Reads coordinate pairs from a text file and uses the Geoapify Reverse Geocoding
9393
- [@geoapify/request-rate-limiter](https://www.npmjs.com/package/@geoapify/request-rate-limiter)
9494
- [node-fetch](https://www.npmjs.com/package/node-fetch)
9595

96-
[↑ Back to top](#table-of-contents)
9796
---
9897

9998
### Python: [Create Map Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/create-a-map)
@@ -113,6 +112,8 @@ Uses Python and Folium to create a Leaflet-based map with custom tile styles fro
113112
**APIs used:**
114113
- [Geoapify Map Tiles](https://www.geoapify.com/map-tiles/)
115114

115+
---
116+
116117
### Python: [Batch Geocode Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/geocode_addresses)
117118

118119
**What it does:**
@@ -129,6 +130,8 @@ Reads a list of addresses and sends them to the Geoapify Geocoding API. Optional
129130
**APIs used:**
130131
- [Geoapify Geocoding API](https://www.geoapify.com/geocoding-api/)
131132

133+
---
134+
132135
### Python: [Reverse Geocode Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/reverse-geocoding)
133136

134137
**What it does:**
@@ -145,6 +148,8 @@ Processes a list of coordinate pairs and sends them to the Geoapify Reverse Geoc
145148
**APIs used:**
146149
- [Geoapify Reverse Geocoding API](https://www.geoapify.com/reverse-geocoding-api/)
147150

151+
---
152+
148153
### Python: [Address Standardization Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/address-standardization)
149154

150155
**What it does:**
@@ -163,6 +168,8 @@ Processes a batch of addresses using the Geoapify Geocoding API and applies a fo
163168
**APIs used:**
164169
- [Geoapify Forward Geocoding API](https://www.geoapify.com/geocoding-api/)
165170

171+
---
172+
166173
### Python: [Address Validation Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/address-validation)
167174

168175
**What it does:**
@@ -182,6 +189,8 @@ Performs batch geocoding of address data and evaluates the `rank.confidence` and
182189
**APIs used:**
183190
- [Geoapify Forward Geocoding API](https://www.geoapify.com/geocoding-api/)
184191

192+
---
193+
185194
### Python: [Isoline Visualization Example](https://github.com/geoapify/maps-api-code-samples/tree/main/python/calculate-and-visualize-isoline)
186195

187196
**What it does:**
@@ -201,6 +210,8 @@ Uses the Geoapify Isoline API to calculate reachable areas from a starting point
201210
- [Geoapify Map Tiles](https://www.geoapify.com/map-tiles/)
202211
- [Folium Library](https://python-visualization.github.io/folium/)
203212

213+
---
214+
204215
### Python: [Display Geocoded Addresses with Clustering and Confidence Coloring](https://github.com/geoapify/maps-api-code-samples/tree/main/python/show-addresses-on-a-map)
205216

206217
**What it does:**
@@ -224,6 +235,8 @@ Reads geocoded results from an NDJSON file and plots them on a Leaflet map using
224235
- [Folium Library](https://python-visualization.github.io/folium/)
225236
- [Folium MarkerCluster Plugin](https://python-visualization.github.io/folium/latest/user_guide/plugins/marker_cluster.html)
226237

238+
---
239+
227240
### Python: [Fetch Places with Grid and Pagination](https://github.com/geoapify/maps-api-code-samples/tree/main/python/query-points-of-interest-with-places-api)
228241

229242
**What it does:**
@@ -246,6 +259,8 @@ Accepts a bounding box and optional filters, then divides the area into smaller
246259
- [Asyncio](https://docs.python.org/3/library/asyncio.html)
247260
- [Aiohttp](https://docs.aiohttp.org/)
248261

262+
---
263+
249264
### Python: [Route Planner Result Processor](https://github.com/geoapify/maps-api-code-samples/tree/main/python/route-planner)
250265

251266
**What it does:**
@@ -265,9 +280,6 @@ Accepts a JSON file describing agents, jobs, and shipments. It sends the request
265280
- [Geoapify Routing API](https://www.geoapify.com/routing-api/)
266281
- [Folium Library](https://python-visualization.github.io/folium/)
267282

268-
[↑ Back to top](#table-of-contents)
269-
---
270-
271283
## 🚧 Upcoming Code Samples
272284

273285
We're actively expanding this repository with examples in multiple programming languages, demonstrating how to work with additional Geoapify APIs and features.

0 commit comments

Comments
 (0)