# places api

Published articles for places api.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Integrating Google Maps, Places API, and Reverse Geocoding with Jetpack Compose

DevFeed: [Integrating Google Maps, Places API, and Reverse Geocoding with Jetpack Compose](<https://devfeed.tech/articles/integrating-google-maps-places-api-and-reverse-geocoding-with-jetpack-compose-25681.md>)

Original publisher: [Read original article](<https://blog.sanskar10100.dev/integrating-google-maps-places-api-and-reverse-geocoding-with-jetpack-compose>)

Author: Sanskar Agrawal

Published: 2023-01-08T16:51:10Z

Content type: tutorial

Language: en

Sources: [Sanskar's Stuff](<https://devfeed.tech/sources/sanskar-s-stuff.md>)

Topics: [Google Maps](<https://devfeed.tech/topics/google-maps.md>), [Jetpack Compose](<https://devfeed.tech/topics/jetpack-compose.md>), [Android](<https://devfeed.tech/topics/android.md>), [API](<https://devfeed.tech/topics/api.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [api](<https://devfeed.tech/tags/api.md>), [geocoding](<https://devfeed.tech/tags/geocoding.md>), [google-maps](<https://devfeed.tech/tags/google-maps.md>), [jetpack-compose](<https://devfeed.tech/tags/jetpack-compose.md>), [places-api](<https://devfeed.tech/tags/places-api.md>)

### AI overview

A tutorial for building an Android address-selection screen with Jetpack Compose, Google Maps, the Places API, and the Geocoding API. It covers Google Cloud project setup, billing, API enablement, API-key configuration, place autocomplete, and converting coordinates to addresses.

### Source excerpt

Integrating Google maps into Android apps has been somewhat of a tough nut to crack for developers. With the advent of Jetpack Compose for building native UI on Android, the Google Maps team announced a Map SDK for Compose, available here. However, i...