GitXplorerGitXplorer
i

geocoder

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
153851a5e3e599e4b24cec129f377a4d57722e74

README

iinimino committed 7 years ago
Unverified
4c24d7ace4fce3e31460f32735a20f696dc1f9a1

initial commit

iinimino committed 7 years ago

README

The README file for this repository.

Background & Objectives

In this exercise, we'll write our first AJAX request. Let's start simple with a GET request. We'll use the Google Geocoding API. We want to build a tool where we can input an address, hit a button, and get the GPS Coordinates back! Ice on the cake, we'll try to display a map as well.

Specs

Geocoding

Read carefully the Google Geocoding API documentation. It boils down to doing a HTTP GET request with an address as a query string parameter.

https://maps.googleapis.com/maps/api/geocode/json?address=16%20Villa%20Gaudelet%20Paris

Go ahead, add a form to your HTML page. It should contain an input where a user can type an address in, and a button to submit the form. Add an event listener for the click event on the button, and then use the Fetch API to make your query to the Google Geocoding service.

In the callback, try to console.log() what the API gave you back. It's a big JSON, look at it! Then figure out where the GPS coordinates are and display them on screen.

[OPTIONAL] Displaying a map

To display a Google Map with a marker at the specified address, we'll use a second API, the Google Maps JavaScript API.

To use it, add to your HTML this line at the bottom of your file, just before the requiring of app.js:

<script src="https://maps.googleapis.com/maps/api/js"></script>

To add a map, you'll need an empty supporting HTML element. For instance:

<div id="map" style="height: 300px"></div>

Once again, please read at the Google Maps JavaScript API documentation.

To display a map in your #map element, you can use those lines:

var map = new google.maps.Map(document.getElementById('map'), {
  center: { lat: 48.8648482, lng: 2.3798534 },
  zoom: 14  // Change this value from 0 to 18
});

To add a marker to the map, if the variable map holds the google.maps.Map object, you can run:

var marker = new google.maps.Marker({
  map: map,
  position: { lat: 48.8648482, lng: 2.3798534 }
});

If you get the following warning, you can ignore it for this exercise.

Happy geocoding!