Posts

Showing posts from April 4, 2013

Quantum Internet Benefits

Image
  The quantum internet is a network of quantum computers that are connected together using quantum communication. It has the potential to revolutionize many industries, including: Secure communications: The quantum internet would be inherently secure, as it would be impossible to eavesdrop on quantum communications without being detected. This could be used for applications such as secure financial transactions, government communications, and military applications. Quantum computing: The quantum internet would allow quantum computers to be connected together, which would allow them to solve problems that are currently impossible for classical computers. This could be used for applications such as drug discovery, financial modeling, artificial intelligence, and materials science. Quantum sensors: The quantum internet could be used to connect quantum sensors together, which would allow them to create a global network of sensors that could be used to monitor the environment, detect earthq

Getting Distance and Traveling Time (Bus Mode) Details from Google Maps in ASP.NET C# using Google Maps API XML & XPath Webservice

Image
Description: 1. In Design View Coding, add the Javascript Code in Head section to make an integration with Google Maps API Script.     <script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"         type="text/javascript"></script> 2. Add the Source and Destination functions inside script tags, which is indicating the locations function Source() {             try {                 var input = document.getElementById('TextBox1');                 var autocomplete = new google.maps.places.Autocomplete(input);                 autocomplete.setTypes('changetype-geocode');             }             catch (err) {                 // exception catching here             }         }                  function Destination() {             try {                 var input = document.getElementById('TextBox2');                 var autocomplete = new google.maps.plac

Show your Current Location in Google Maps using ASP.NET C# website and Google Maps API

Image
Descriptions: Add this script tag inside <Head> section " <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyByJmQq7PkPaznZUFsH7AesFNUz82U8iOc&sensor=false"> </script> " Inside this Script add your own Key value  [ key=AIzaSyByJmQq7PkPaznZUFsH7AesFNUz82U8iOc]   from Google Code  https://code.google.com/apis/console/ 1. Getting User Location function in Javascript coding        function success(position) {         var latitude = position.coords.latitude;         var longitude = position.coords.longitude;         var city = position.coords.locality;         var myLatlng = new google.maps.LatLng(latitude, longitude);         var myOptions = {             center: myLatlng,             zoom: 12,             mapTypeId: google.maps.MapTypeId.SATELLITE         };                2. Setting Marker in Google Maps       var map = new google.maps.Map(document.getElementById(&