geodev-hackerlabs

Use HTML5 location and esri leaflet to query a feature service

In this lab we’ll write a Leaflet application that uses HTML5 to glean a user’s location and then fire off a spatial query to an Esri service of US Census Blocks to find out which one our end user happens to be inside.

1. First, lets get our development environment set up.

because of security rules introduced in Chrome 50 (on 4/20/2016), it is mandatory to configure https in order to take advantage of HTML5 location when you move your website into production.

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

Step 1

2. Next we need to ask our end user where they are.

Use Leaflet’s built in method to ask the user to share their location and make sure to get a reference to it once it’s available.

Step 2

3. Then we ask our ArcGIS service which census block they’re inside of.

Create an L.esri.query object and pass it the user’s location. Afterwards you’ll be able to fire a request to an Esri service that hosts US Census Block Groups to see which block the person is inside.

4. … and draw the right one.

Add the feature that is retrieved to the map using Leaflet’s L.geoJSON class.

Step 4

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


Resources

Bonus

are you thirsty for more?