Skip to content
View on GitHubSample viewer app

Geocode addresses to locations and reverse geocode locations to addresses offline.

Image of offline geocode

Use case

You can use an address locator file to geocode addresses and locations. For example, you could provide offline geocoding capabilities to field workers repairing critical infrastructure in a disaster when network availability is limited.

How to use the sample

Type the address in the Search menu option or select from the list to Geocode the address and view the result on the map. Tap the location you want to reverse geocode. Select the pin to highlight the PictureMarkerSymbol (i.e. single tap on the pin).

How it works

  1. Use the path of a .loc file to create a LocatorTask object.
  2. Set up GeocodeParameters and call geocode to get geocode results.
  3. Call reversegeocode passing the tapped location on the map to find the address with reverse geocoding.

Relevant API

  • GeocodeParameters
  • GeocodeResult
  • LocatorTask
  • ReverseGeocodeParameters

Tags

geocode, geocoder, locator, offline, package, query, search

Sample Code

MainActivity.ktMainActivity.ktDownloadActivity.kt
Use dark colors for code blocksCopy
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 /* Copyright 2023 Esri  *  * Licensed under the Apache License, Version 2.0 (the "License");  * you may not use this file except in compliance with the License.  * You may obtain a copy of the License at  *  * http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License.  *  */  package com.esri.arcgismaps.sample.geocodeoffline  import android.database.MatrixCursor import android.graphics.drawable.BitmapDrawable import android.os.Bundle import android.provider.BaseColumns import android.util.Log import android.view.Menu import android.view.View import android.widget.AutoCompleteTextView import android.widget.EditText import androidx.appcompat.widget.SearchView import androidx.core.content.ContextCompat import androidx.cursoradapter.widget.SimpleCursorAdapter import androidx.databinding.DataBindingUtil import androidx.lifecycle.lifecycleScope import com.arcgismaps.ApiKey import com.arcgismaps.ArcGISEnvironment import com.arcgismaps.geometry.GeometryEngine import com.arcgismaps.geometry.Point import com.arcgismaps.mapping.ArcGISMap import com.arcgismaps.mapping.Basemap import com.arcgismaps.mapping.Viewpoint import com.arcgismaps.mapping.layers.ArcGISTiledLayer import com.arcgismaps.mapping.layers.TileCache import com.arcgismaps.mapping.symbology.PictureMarkerSymbol import com.arcgismaps.mapping.view.Graphic import com.arcgismaps.mapping.view.GraphicsOverlay import com.arcgismaps.tasks.geocode.GeocodeParameters import com.arcgismaps.tasks.geocode.GeocodeResult import com.arcgismaps.tasks.geocode.LocatorTask import com.esri.arcgismaps.sample.geocodeoffline.databinding.GeocodeOfflineActivityMainBinding import com.esri.arcgismaps.sample.sampleslib.EdgeToEdgeCompatActivity import com.google.android.material.snackbar.Snackbar import kotlinx.coroutines.launch import java.io.File  class MainActivity : EdgeToEdgeCompatActivity() {   // set up data binding for the activity  private val activityMainBinding: GeocodeOfflineActivityMainBinding by lazy {  DataBindingUtil.setContentView(this, R.layout.geocode_offline_activity_main)  }   private val mapView by lazy {  activityMainBinding.mapView  }   // display the metro area of the tapped location  private val descriptionTV by lazy {  activityMainBinding.descriptionTV  }   private val provisionPath: String by lazy {  getExternalFilesDir(null)?.path.toString() + File.separator + getString(R.string.geocode_offline_app_name)  }   // create a picture marker symbol  private val pinSymbol: PictureMarkerSymbol by lazy {  createPinSymbol()  }   // geocode parameters used to perform a search  private val geocodeParameters: GeocodeParameters by lazy {  GeocodeParameters().apply {  // get all attributes  resultAttributeNames.add("*")  // get only the closest result  maxResults = 1  }  }   // locator task to provide geocoding services  private val locatorTask: LocatorTask by lazy {  LocatorTask(File(provisionPath, getString(R.string.san_diego_loc)).path)  }   // create a graphics overlay  private val graphicsOverlay: GraphicsOverlay = GraphicsOverlay()   override fun onCreate(savedInstanceState: Bundle?) {  super.onCreate(savedInstanceState)   // authentication with an API key or named user is  // required to access basemaps and other location services  ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.ACCESS_TOKEN)  lifecycle.addObserver(mapView)   // load the tile cache from local storage  val tileCache = TileCache("$provisionPath/streetmap_SD.tpkx")  // create a tiled layer and add it to as the base map  val tiledLayer = ArcGISTiledLayer(tileCache)  mapView.apply {  map = ArcGISMap(Basemap(tiledLayer))  // set map initial viewpoint  map?.initialViewpoint = Viewpoint(32.72, -117.155, 120000.0)  // add a graphics overlay to the map view  graphicsOverlays.add(graphicsOverlay)  }   // load geocode locator task  lifecycleScope.launch {  locatorTask.load().onSuccess {  mapView.onSingleTapConfirmed.collect { event ->  // find address with reverse geocode using the tapped location  event.mapPoint?.let { mapPoint -> findAddressReverseGeocode(mapPoint) }  }  }.onFailure {  showError(it.message.toString())  }  }  }   override fun onCreateOptionsMenu(menu: Menu): Boolean {  menuInflater.inflate(R.menu.menu, menu)  val search = menu.findItem(R.id.appSearchBar)  val searchView = search.actionView as SearchView  // set up address search view and listeners  setupAddressSearchView(searchView)  val surfaceContainerColor = getColor(com.esri.arcgismaps.sample.sampleslib.R.color.colorBackground)  val onSurfaceColor = getColor(com.esri.arcgismaps.sample.sampleslib.R.color.textColor)  searchView.findViewById<EditText>(androidx.appcompat.R.id.search_src_text).apply {  setTextColor(onSurfaceColor)  }  searchView.findViewById<View>(androidx.appcompat.R.id.search_plate).apply {  setBackgroundColor(surfaceContainerColor)  }  return super.onCreateOptionsMenu(menu)  }   /**  * Sets up the address SearchView and uses MatrixCursor to  * show suggestions to the user as text is entered.  */  private fun setupAddressSearchView(addressSearchView: SearchView) {  // disable threshold to show results from single character  val autoCompleteTextViewID = resources.getIdentifier("search_src_text", "id", packageName)  addressSearchView.findViewById<AutoCompleteTextView>(autoCompleteTextViewID).threshold = 0   // get the list of pre-made suggestions  val suggestions = resources.getStringArray(R.array.suggestion_items)  // set up parameters for searching with MatrixCursor  val columnNames = arrayOf(BaseColumns._ID, "address")  val suggestionsCursor = MatrixCursor(columnNames)  // add each address suggestion to a new row  suggestions.forEachIndexed { i, s -> suggestionsCursor.addRow(arrayOf(i, s)) }   // column names for the adapter to look at when mapping data  val cols = arrayOf("address")  // ids that show where data should be assigned in the layout  val to = intArrayOf(R.id.suggestionAddress)  // define SimpleCursorAdapter  val suggestionsAdapter = SimpleCursorAdapter(  this@MainActivity,  R.layout.suggestion_address, suggestionsCursor, cols, to, 0  )   addressSearchView.suggestionsAdapter = suggestionsAdapter  // handle an address suggestion being chosen  addressSearchView.setOnSuggestionListener(object : SearchView.OnSuggestionListener {  override fun onSuggestionSelect(position: Int): Boolean {  return false  }   override fun onSuggestionClick(position: Int): Boolean {  // geocode the typed address  addressSearchView.setQuery(suggestions[position], true)  return true  }  })   // geocode the searched address on submit  addressSearchView.setOnQueryTextListener(object : SearchView.OnQueryTextListener {  override fun onQueryTextSubmit(address: String): Boolean {  geocodeAddress(address)  addressSearchView.clearFocus()  return true  }   override fun onQueryTextChange(newText: String?) = true  })  }   /**  * Use the locator task to geocode the given address.  *  * @param address as a string to geocode  */  private fun geocodeAddress(address: String) = lifecycleScope.launch {  // clear graphics on map before displaying search results  graphicsOverlay.graphics.clear()  // load the locator task  locatorTask.load().getOrThrow()  // run the locatorTask geocode task, passing in the address  val geocodeResults = locatorTask.geocode(address, geocodeParameters).getOrThrow()  geocodeResults.ifEmpty {  // no address found in geocode so return  showError("No address found for $address")  return@launch  }  // display address found in geocode  displaySearchResultOnMap(geocodeResults)  }   /**  * Get the reverse geocode result from the [mapPoint]  */  private suspend fun findAddressReverseGeocode(mapPoint: Point) {  // normalize the geometry - needed if the user crosses the international date line.  val normalizedPoint = GeometryEngine.normalizeCentralMeridian(mapPoint) as Point  locatorTask.reverseGeocode(normalizedPoint).onSuccess { geocodeResults ->  // no address found in geocode so return  if (geocodeResults.isEmpty()) {  showError("Could not find address at tapped point")  return@onSuccess  }  displaySearchResultOnMap(geocodeResults)  }.onFailure {  showError(it.message.toString())  }  }   /**  * Turn the first address from [geocodeResultList] into a point marker and adds it to the graphic overlay of the map.  */  private fun displaySearchResultOnMap(geocodeResultList: List<GeocodeResult>) {  // clear graphics overlay of existing graphics  graphicsOverlay.graphics.clear()   // create graphic object  val resultLocationGraphic = Graphic(  geocodeResultList[0].displayLocation,  geocodeResultList[0].attributes, pinSymbol  )  graphicsOverlay.graphics.add(resultLocationGraphic)  descriptionTV.text = geocodeResultList[0].label   // get the envelop to set the viewpoint  val envelope = graphicsOverlay.extent ?: return showError("Geocode result extent is null")  // animate viewpoint to geocode result's extent  lifecycleScope.launch {  mapView.setViewpointGeometry(envelope, 25.0)  }  }   /**  * Creates a picture marker symbol from the pin icon.  */  private fun createPinSymbol(): PictureMarkerSymbol {  val pinDrawable = ContextCompat.getDrawable(this, R.drawable.pin) as BitmapDrawable  val pinSymbol = PictureMarkerSymbol.createWithImage(pinDrawable)  pinSymbol.apply {  // resize the dimensions of the symbol  width = 18f  height = 65f  }  return pinSymbol  }   private fun showError(message: String) {  Log.e(localClassName, message)  Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show()  } }

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.