/**
 * Created in 2009 by Tom Henigan (tom@buckleconsulting.com)
 *
 * All the below contents of this file are copyright of Chris Buckle
 * chris@buckleconsulting.com
 *
 * You cannot use or reproduce any part of this file without express written
 * consent from the copyright holder Chris Buckle.
 *
 */
 
var localSearch;
$(document).ready(function () {
  localSearch = new GlocalSearch();
});

// http://www.tomanthony.co.uk/blog/geocoding-uk-postcodes-with-google-map-api/
function postcodeToPoint(postcode, callbackFunction) {
  localSearch.setSearchCompleteCallback(null,
    function() {
      if (localSearch.results[0]) {    
        var resultLat = localSearch.results[0].lat;
        var resultLng = localSearch.results[0].lng;
        var point = new GLatLng(resultLat,resultLng);
        callbackFunction(point);
      }else{
        alert("Postcode not found!");
      }
    });  
    
  localSearch.execute(postcode + ", UK");
}
