For this you must be connected to internet.
1. Open a text file and store it on your desktop.
2. Name it as test.html
3. Open the file in edit mode using a notepad.
copy paste the following code
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(25.15, 86.35);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>
In the above code ,replace 25.15 with latitude of your place and 86.25 with longitude of your place in new google.maps.LatLng(25.15, 86.35)
You can find longitude and latitude of your place using this side.
http://www.earthtools.org/
There are many other similar sites.
Now save the file. Open test.html using a web browser like IE or Firefox. You will see Google map pointing to that location.
Wednesday, June 23, 2010
Tuesday, June 22, 2010
Google Voice - Try it now
Last year, Google released Google Voice, a web-based platform for managing phone communications. Google introduced one number to ring all your phones, voicemail that works like email, free calls and text messages to the U.S. and Canada, low-priced international calls and more—the only catch was you had to request and receive an invite to try it out. As per Google, after lots of testing and tweaking, Google has opened up Google Voice to the public, no invitation required. – (As per Google)
After you sign in into Google Voice, You will see your voice Inbox. The person called message will be present in message form.
In order to send text message.
Subscribe to:
Posts (Atom)