Skip to main content

Posts

Showing posts from July, 2018

Get Address on the basis of Latitude and longitude using google

To get Address on the basis of Latitude and longitude using google you can use below code, it will ask for permission and then show the latitude and longitude in text box Use the below Script: Latitude: <input type="text" id="txtLatitude" value="18.92488028662047" /> Latitude: <input type="text" id="txtLongitude" value="72.8232192993164" /> <input type="button" value="Get Address" onclick="GetAddress()" /> <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> function GetAddress() {     var lat = parseFloat(document.getElementById("txtLatitude").value);     var lng = parseFloat(document.getElementById("txtLongitude").value);     var latlng = new google.maps.LatLng(lat, lng);     var geocoder = geocoder = new google.maps.G...

Basic Linux Command

Minimize the current file in Vim to minimize the current open file in VIM editor in linux: ctrl + z Maximize the current file in Vim to maximize the current open file in VIM editor in linux: fg [1|2|...] Linux Command -------------- service httpd restart service firewalld status yum install vim nmtui // For Network Manager service network restart route -n yum install  httpd wget http://downloads2.goautodial.org/centos/7/goautodial.repo yum install wget yum install -y epel-release yum update -y yum -y groupinstall "Development Tools" yum install -y httpd php-common php-pdo php php-pear php-mbstring php-cli php-gd php-imap php-devel phpsysinfo php-mysql phpmyadmin mod_ssl mariadb mariadb-server mariadb-devel perl-DBI perl-DBD-MySQL perl-Digest-HMAC perl-YAML perl-ExtUtils-ParseXS perl-NetAddr-IP perl-Crypt-SSLeay perl-Curses perl-DBD-Pg perl-Module-ScanDeps perl-Text-CSV perl-HTML-Template perl-IO-Compres...

Connect us

Name

Email *

Message *