Google Maps
.ASPX
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDW5KYJ8ay7fgR45uobALQ4fY_ozzI6joE&sensor=false">
</script>
<script>
function initialize() {
var mapProp = {
center: new google.maps.LatLng(51.508742, -0.120850),
zoom: 5,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap")
, mapProp);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="googleMap" style="width:500px;height:380px;"></div>
</form>
</body>
</html>