/* Start GoogleMaps, with optional parameters */
findStores({
  startLocation: "true", /* Boolean, true/false. If true, the storelocator will use the device geolocation. If false you need to enter a postcode */
  transMethod: "walking", /* Transport method: walking / driving / bicycling */
  results: 3, /* Number of results */ 
  autoCalculate: "true", /* Boolean, true/false. If true, the storelocator will automatic calculate and show the nearest store. */
  mapWidth: "100%", /* Map width, pixels or percentage */
  mapHeight: "100%", /* Map height, pixels or percentage */
  mapTop: "0px", /* Map topoffset, pixels */
  mapLeft: "0px", /* Map leftoffset, pixels */
  closeButton: "false", /* Boolean, true/false */
  startIcon: "marker_green.png", /* Starticon */
  endIcon: "marker_red.png", /* Endicon */
  zIndex: 110 /* Z-index */
});


/* Close GoogleMaps */
  closeStores();
