geodev-hackerlabs

Display Demographic data when users search for an address

In this lab we’ll write a Leaflet application that allows users to search for addresses and points of interest and displays attribute information from an associated neighborhood.

1. Lets get our development environment set up.

For this exercise, we’ll use the complete example from the conclusion of our Add Feature Layers exercise as our jumping off point.

Step 1

2. Add address search to our application

We can rip off the sample here. our job is to determine what code we need to copy/paste/modify to get address search working in our app.

Step 2

3. Seize the opportunity to find out which neighborhood the address is inside

We’ll need to use an event listener to get a reference to the coordinates of the found address. Afterward we can use L.esri.featureLayer.query to determine which neighborhood its in.

searchControl.on('results', function (evt) {
  /* 'evt' is a geosearch result object.
  it will include information about the address we just searched for */
})

Step 3

var neighborhoodQuery = neighborhoods.query()
neighborhoodQuery.intersects(/*the geometry of the matched address*/)
neighborhoodQuery.run(function(error, featureCollection){
  // here we'll have a reference to the neighborhood that is coincident with the address
});

4. … and display the demographic data we dug out

Last, we’ll add a Leaflet Marker to the map and display attributes from the associated neighborhood to our users.

Step 4

var income = featureCollection.features[0].properties.AVGHINC_CY
document.getElementById('title').innerHTML = income;

In the end, hopefully your app will look kinda, sorta like this.


Resources

Bonus

are you thirsty for more?