Posts

Showing posts from 2016

Place multiple custom marker icon on Google map

Image
This example display a multiple custom marker in Google map using php and google map code. <pre name="code">Php code</pre> <?php $address = array( "Pizza Hut, Gr Flr, Solitaire Bldg 150 Feet, 150 Feet Ring Rd, Jagannath Plot, Rajkot", "Civil Hospital, Hospital Chowk, Naval Nagar, Sadar, Rajkot ", "Toran Limda Chowk, Opp Shastri Ground, Panchnath Plot, Sadar, Rajkot", "N M Virani Wockhardt Hospital, Kalawad Road, Jala Ram Nagar, Rajkot" ); $icon_name    = array("Restaurant","Hospital","Restaurant","Hospital"); $count   = count($address); $i = 1;$j=0; foreach ($address as $data) {     if ($icon_name[$j] == "Hospital") {         $img = 'http://maps.google.com/mapfiles/ms/icons/hospitals.png';     } else {         $img = 'http://maps.google.com/mapfiles/ms/icons/restaurant.png';     }     $geo = file_get_contents(...

How to Google page crawling and works

How Search Works These processes lay the foundation — they're how we gather and organize information on the web so we can return the most useful results to you. Our index is well over 100,000,000 gigabytes, and we’ve spent over one million computing hours to build it.  Finding information by crawling Google use software known as "web crawlers" to discover publicly available webpages. The most well-known crawler is called "Googlebot." Crawlers look at webpages and follow links on those pages, much like you would if you were browsing content on the web. They go from link to link and bring data about those webpages back to Google's servers. The crawl process begins with a list of web addresses from past crawls and sitemaps provided by website owners. As Google crawlers visit these websites, they look for links for other pages to visit. The software pays special attention to new sites, changes to existing sites and dead links. Computer...