-
-
Save tuxcanfly/876055 to your computer and use it in GitHub Desktop.
Agiliq on google map
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 "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<title>Google Maps JavaScript API Example</title> | |
<script src="http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true_or_false" type="text/javascript"></script> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
<script type="text/javascript" src="/apis/maps/include/yt_rotator.js"></script> | |
<script type="text/javascript"> | |
var map; | |
function initialize() { | |
var myLatLng = new google.maps.LatLng(17.439301,78.398223); | |
var myOptions = { | |
zoom: 13, | |
center: myLatLng, | |
mapTypeId: google.maps.MapTypeId.TERRAIN, | |
streetViewControl: true | |
}; | |
map = new google.maps.Map(document.getElementById("map_canvas"), | |
myOptions); | |
} | |
</script> | |
</head> | |
<body onload="initialize()" onunload="GUnload()"> | |
<div id="map_canvas" style="width: 253px; height: 300px"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment