Place multiple custom marker icon on Google map
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(...