Created
October 10, 2011 16:51
-
-
Save ryanrolds/1275783 to your computer and use it in GitHub Desktop.
Bing Maps 6.3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>SetCredentials</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.3"></script> | |
<script type="text/javascript"> | |
var map = null; | |
function GetMap() { | |
map = new VEMap('myMap'); | |
map.LoadMap(); | |
} | |
</script> | |
</head> | |
<body onload="GetMap();"> | |
<div id='myMap' style="position:relative; width:600px; height:400px;"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment