Inmarsat Developer Conference 2016
james@geovation.uk
@JamesLMilner
loxodrome.io
That bar behind the coffee shop on Westferry Road?
An address?
A postcode?
A latitude and longitude?
Easting and Northing?
x and y?
Textual data may be useful in context, but it is not directly plottable on a map
 SELECT ST_Area(the_geog)/POWER(0.3048,2) 
        As sqft, ST_Area(the_geog) As sqm FROM somegeogtable;Source: Open Signal 2015
// ArcGIS JavaScript API
require(["esri/map", "dojo/domReady!"], function(Map) {
  var map = new Map("map", {
    center: [-118, 34.5],
    zoom: 8,
    basemap: "topo"
  });
});
// Google Maps JavaScript API
var map;
function initMap() {
    map = new google.maps.Map(document.getElementById('map'), {
      center: {lat: -34.397, lng: 150.644},
      zoom: 8
    });
}
// Leaflet JS
var map = L.map('map').setView([51.505, -0.09], 13);
var attr = '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors';
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    attribution: attr
}).addTo(map);Pros
Cons
@JamesLMilner