﻿$(document).ready(function(){
    $('#GoogleMapContainer').html("<h2>Stentons on Google Maps</h2><p>This map shows exactly where we are, you can also get <a href=\"#DrivingDirectionsContainer\">driving directions below</a>.</p><div id=\"GoogleMap\"></div>");
    $('#GoogleMap').jmap({
		                    mapCenter: [52.6128, -2.4822], 
		                    mapZoom: 15,
		                    mapShowOverview: false,
		                    mapShowType: true
	                    }).addMarker({
		                    pointLat: 52.6128, 
		                    pointLng: -2.4822,
		                    pointHTML: "<h3>Stentons Estate Agents Ltd.</h3><p>74 High Street, Broseley, Shropshire, TF12 5EX - Tel: 01952 883300</p>",
		                    openHTMLEvent: "click"
	                    });
    $("#DrivingDirectionsContainer").html("<h2>Get driving directions</h2><p>Get driving directions to Stentons Estate Agents</p><label id=\"lblDirectionStart\" for=\"txtDirectionsStart\">Enter your address or postcode:<input type=\"text\" id=\"txtDirectionsStart\" /></label><img id=\"btnGetDirections\" src=\"/_client/images/buttons/btn_getdirections.png\" alt=\"Get Directions\" />");
    $("#btnGetDirections").click(function(){
        var $txtDirectionsStart = $("#txtDirectionsStart");
        if($txtDirectionsStart.val() == "")
            alert("Please enter your address or postcode.");
        else
            window.open("http://maps.google.com/maps?f=d&hl=en&geocode=&saddr=" + $txtDirectionsStart.val() + "&daddr=TF12+5EX&sll=52.6128,-2.4822&sspn=0.014801,0.037036&ie=UTF8&z=8","gmaps");
    });
});