Did you apply changes we suggested to public project? It seems there are no changes. Could you please try again? Delete Load event with this JS:
codeTiggr("busName").html(localStorage.getItem("LocBusName"));
Tiggr("busAddress").html(localStorage.getItem("LocAdd"));
Tiggr("busPhone").html(localStorage.getItem("LocPhone"));
var myOptions = {
zoom :16,
center: new google.maps.LatLng(localStorage.getItem("LocLat"),localStorage.getItem("LocLong")),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map($('div[dsid="busMap"]').get(0), myOptions);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(localStorage.getItem("LocLat"),localStorage.getItem("LocLong")),
map: map,
title: localStorage.getItem("LocBusName")
});
//Tiggr("busMap").options.mapElement.gmap("refresh"); //trying to get the map to rewrite
Tiggr("offerTitle").html(localStorage.getItem("LocOffer"));
Tiggr("offerTxt").html(localStorage.getItem("LocOfferText"));
Tiggr("offerExp").html(localStorage.getItem("LocOfferExp"));
var sourceAddress = "176 Fernhill, Arklow, County Wicklow"
var destinationAddress = new google.maps.LatLng(localStorage.getItem("LocLat"),localStorage.getItem("LocLong"));
var panel= Tiggr("directionsPanel")[0];
displayDirections(sourceAddress, destinationAddress, map, panel);
console.log("back from displayDirections map.center="+map.center+" and map.zoom ="+map.zoom);/code
and put this code on Show event on BusPage page