05.06.2013 -
I am agree with above all steps.
This tutorial aims to outline the process of creating a visitor map you sometimes see on MySpace profiles.
This tutorial aims to outline the process of creating a visitor map you sometimes see on MySpace profiles. It does not aim to be a definitive guide on creating an incredibly precise map, but rather shows an example of the process involved and how different APIs and data can work together. Due to the nature of the external services used, it is not going to be entirely accurate, however it generally bodes quite well and is accurate to country almost all the time. Eventually, this is the kind of output we'll get:
We will be using three external services: hostip.info, maps.yahoo.com and maps.google.com. The visitor's IP address is gathered, and this is then fed to the hostip.info API. If its location can be determined, then it is passed to the Yahoo Maps API to gather its geographic coordinates. Note: I am aware that the Yahoo API can be bypassed as the hostip.info API provides geographic coordinates, but at the time of writing no such feature was available. However, by the end of the tutorial you should have learned enough to add this functionality in yourself. These will then be plotted using the Google Maps API to create the actual map display. If the location can not be determined, the user is not plotted on the map, so it heavily depends on the APIs involved. A pseudo-flowchart may look something as follows:
What it is advised you should know before using this tutorial:
1) At least a basic understanding of PHP, especially functions and data types (array, boolean etc.)
2) An understanding of databases, namely MySQL and its integration with PHP scripts
3) Hopefully knowledge of what the Document Object Model and XML are, though these are not a necessity
The first thing to do is sign up for a Google Maps API key. You can do this here; be sure to read the restrictions and the terms of use.
Create a database, naming it something like 'visitormap', and assign it a user. We will have five fields; id, ip, location, longitude and latitude; all hopefully self-explanatory. So, execute the following SQL:
CREATE TABLE `visitor_map` ( `id` INTEGER auto_increment, `ip` VARCHAR(15) NOT NULL, `location` VARCHAR(32) NOT NULL, `longitude` FLOAT NOT NULL, `latitude` FLOAT NOT NULL, PRIMARY KEY (`id`) );
For ease of use, we'll now create a configuration file. Create a file called config.php and insert the following, changing the constant values to suit your database setup and Google Maps API key.
<?php define('DB_HOST', 'localhost'); // Database host define('DB_NAME', 'visitormap'); // Database being used define('DB_USER', 'david2012'); // Database user define('DB_PASS', 'password56'); // Database user's password /* Your Google Maps API key */ define('API_KEY', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'); ?>
We want to create a function in which we can house the code to give us the coordinates and other information we need to create the map display. If you are not very strong on functions, view the Zymic tutorial on functions or visit the PHP manual page. Create a file named visitormap.php with the following (explained afterwards):
<?php function IPtoCoords($ip) { $dom = new DOMDocument(); $ipcheck = ip2long($ip); if($ipcheck == -1 || $ipcheck === false) trigger_error('Invalid IP, what are you doing? :|', E_USER_ERROR); else $uri = 'http://api.hostip.info/?ip=' . $ip; $dom->load($uri); $location = (strpos($dom->getElementsByTagName('name')->item(1)->nodeValue, 'Unknown') === false) ? $dom->getElementsByTagName('name')->item(1)->nodeValue : $dom->getElementsByTagName('countryAbbrev')->item(0)->nodeValue; if($location == 'XX') return false; else { $dom->load('http://local.yahooapis.com/MapsService/V1/geocode?appid=YahooDemo&location=' . $location); $longitude = $dom->getElementsByTagName('Longitude')->item(0)->nodeValue; $latitude = $dom->getElementsByTagName('Latitude')->item(0)->nodeValue; return array('location' => $location, 'longitude' => $longitude, 'latitude' => $latitude); } } ?>
<?php function IPtoCoords($ip) { $dom = new DOMDocument(); } ?>
Here we create a function called 'IPtoCoords'. Eventually, it will return us an array of the following values: location (be it city or country--however accurate the hostip.info API is), longitude and latitude. Inside the function, PHP's DOMDocument object is instantiated (an instance created of; in this case assigned to the $dom variable) using the 'new' keyword, and this will provide us with methods to grab data from XML outputted from both the hostip.info and Yahoo Maps APIs.
<?php function IPtoCoords($ip) { /*$dom = new DOMDocument();*/ $ipcheck = ip2long($ip); if($ipcheck == -1 || $ipcheck === false) trigger_error('Invalid IP, what are you doing? :|', E_USER_ERROR); else $uri = 'http://api.hostip.info/?ip=' . $ip; } ?>
We want to make sure the IP is valid, just in case the user is trying something a bit funny. So, we use the PHP function ip2long to check this - it works by converting the IP to a proper address, and then if this either returns -1 or a boolean value of false, we can assume that the given address is invalid. If the IP is invalid, we trigger an error message, however if the IP is indeed correct, we form a URI out of the IP in format http://api.hostip.info/?ip=IP and assign it to a variable for later use - this is the first step in using hostip.info's API.
<?php function IPtoCoords($ip) { /*$dom = new DOMDocument(); $ipcheck = ip2long($ip); if($ipcheck == -1 || $ipcheck === false) trigger_error('Invalid IP, what are you doing? :|', E_USER_ERROR); else $uri = 'http://api.hostip.info/?ip=' . $ip;*/ $dom->load($uri); $location = (strpos($dom->getElementsByTagName('name')->item(1)->nodeValue, 'Unknown') === false) ? $dom->getElementsByTagName('name')->item(1)->nodeValue : $dom->getElementsByTagName('countryAbbrev')->item(0)->nodeValue; } ?>
First we call the DOMDocument's 'load' method, which loads an external XML file. In this case, it's the $uri variable we created in the previous step. The next section is a bit more complex and uses a ternary operator (short-hand if/else block) Basically, we have the $location variable at the beginning, and will assign it values based on the if/else block. We use the strpos function to test if the second 'name' tag in the XML file contains the word 'Unknown' as returned by the API, using the DOM's getElementsByTagName method. If it does, we use the ISO 3166 country code returned in the 'countryAbbrev' tag, but if not, we use the second 'name' tag as it contains a known location.
<?php function IPtoCoords($ip) { /*$dom = new DOMDocument(); $ipcheck = ip2long($ip); if($ipcheck == -1 || $ipcheck === false) trigger_error('Invalid IP, what are you doing? :|', E_USER_ERROR); else $uri = 'http://api.hostip.info/?ip=' . $ip; $dom->load($uri); $location = (strpos($dom->getElementsByTagName('name')->item(1)->nodeValue, 'Unknown') === false) ? $dom->getElementsByTagName('name')->item(1)->nodeValue : $dom->getElementsByTagName('countryAbbrev')->item(0)->nodeValue;*/ if($location == 'XX') return false; else { $dom->load('http://local.yahooapis.com/MapsService/V1/geocode?appid=YahooDemo&location=' . $location); $longitude = $dom->getElementsByTagName('Longitude')->item(0)->nodeValue; $latitude = $dom->getElementsByTagName('Latitude')->item(0)->nodeValue; return array('location' => $location, 'longitude' => $longitude, 'latitude' => $latitude); } } ?>
The first two lines are performing a check on the location. If our $location variable was given the contents of the 'countryAbbrev' tag, it may have resolved to 'XX' as provided by the hostip.info API - meaning the country could not be determined. If this is the case, we return a boolean value of false. If not, we begin utilising the Yahoo Maps API, using a similar convention to the hostip.info one.
Again, we load a URI into the DOMDocument's 'load' method, this time loading a Yahoo URI with a 'location' GET value of what is held by our $location variable. The API is clever and the GET value can be a wide range of things, including street, city, state, zip, country (including ISO 3166 code) and various combinations. In our case it will generally either be a city, or if this could not be resolved by the hostip.info API then a country code. With this new URI loaded, we again use the getElementsByTagName method to grab the contents of the first 'Longitude' and 'Latitude' tags with the nodeValue property (which grabs the text content contained within the tag.)
Finally, we set the return values of the function. It is an associative array in the format location: city or country, longitude: location longitude, latitude: location latitude. This will then be used for entering into our database and eventually displaying on a map.
Now that we can successfully gain the visitor's location, we can use this to build our finished visitor map. Create a new file (for instance viewmap.php). At the top of your file, put the following:
<?php // Include the configuration and function files we created require 'config.php'; require 'visitormap.php'; // Establish a MySQL connection and select our database using values contained in config.php. mysql_connect(DB_HOST, DB_USER, DB_PASS); mysql_select_db(DB_NAME); // Assign the user's IP to a variable and plot it into our function, whose return value is assigned to $userinfo // Remember, the user's IP is not to be trusted 100% $ip = $_SERVER['REMOTE_ADDR']; $userinfo = IPtoCoords($ip); // We select the location column from the database $user = mysql_query('SELECT `location` FROM `visitor_map` WHERE `location` = \'' . $userinfo['location'] . '\''); // If it does NOT return a value, and the user's IP could indeed be matched... // (This makes sure that we have no duplicate rows (which would be a waste) and can determine the visitor's location, respectively) // ...We insert the values returned by our function into the database, escaping any possible dangerous input if(!mysql_fetch_row($user) && $userinfo) mysql_query('INSERT INTO `visitor_map` (`ip`, `location`, `longitude`, `latitude`) VALUES (\'' . mysql_real_escape_string($ip) . '\', \'' . $userinfo['location'] . '\', ' . $userinfo['longitude'] . ', ' . $userinfo['latitude'] . ')') or die(mysql_error()); ?>
This is quite simple so explanation is contained within the file itself.
Now that we've inserted the user's data into our database, we select all of this information and plot it on a Google Maps object. In the file you just created, you can now create the HTML of the page, including whatever content you wish. The Google Maps API requires the following, however:
1) Include the JavaScript file required for Google Maps, using your API key. Insert the following into the <head> of your HTML page:
<script src="http://maps.google.com/maps?file=api&v=2&key=<?php echo API_KEY; ?>" type="text/javascript"></script>
2) Certain functions must be triggered on page load and unload. You can use JavaScript event handlers if you want to separate structure from behaviour, but the easiest method is to put the information into the <body> tag:
<body onload="load();" onunload="GUnload();">
Now we'll be using the actual Google Maps API to plot the data, which is done using JavaScript. In the head of your HTML document, put the following:
<script type="text/javascript"> //<![CDATA[ function load() { if(GBrowserIsCompatible()) { var map = new GMap2(document.getElementById('map')); map.addControl(new GLargeMapControl()); map.setCenter(new GLatLng(0, 0), 1); <?php $query = mysql_query('SELECT `longitude`, `latitude` FROM `visitor_map`'); while($row = mysql_fetch_array($query)) { ?> map.addOverlay(new GMarker(new GLatLng(<?php echo $row['latitude']; ?>, <?php echo $row['longitude']; ?>))); <?php } ?> } } //]]> </script>
We start off defining a 'load' function, which is triggered on page load, shown in the previous step. Then, an if statement is used to see if the user's browser supports Google Maps. The next line assigns the map canvas to an HTML element, in this case with an ID of 'map', using the DOM's getElementById method. The following two lines add a large zoom/pan control to the map object and set the default centre of the map when loading to 0 (the centre of the world), respectively.
Finally, we use some PHP to draw the longitude and latitude coordinates from our database, then loop the results. On each successive loop, we create a marker (the red pointer showing the visitor locations) using the addOverlay method provided by the Google Maps API. The following JavaScript is echoed, albeit with the values contained in our database:
map.addOverlay(new GMarker(new GLatLng(LATITUDE, LONGITUDE)));
All of this is covered in the Google Maps API documentation.
Now that we have our JavaScript function which plots the data set up, all we have to do is define a canvas for the map to be displayed. In the 'load' function, we specified an HTML element of ID 'map', so make sure this reflects the ID of the element you'll be using to display the map:
<div id="map" style="width: 500px; height: 300px"></div>
Basic inline CSS styles are applied to give a width and a height to the canvas, but it's not a necessity. There we have it! Your visitormap should work. If not, download the provided example and compare the code with your own.
Conclusion:
1) Our script has some limitations. Primarily, the accuracy is not going to be 100% and can be as vague as a country or city. Secondly, if the user's IP can't be pinpointed, they are not plotted, rendering the visitor map unreliable regarding visitor data (hits etc.).
2) Performance is a big issue. The script uses three external APIs, and on this note can be quite slow (though luckily we are storing the data returned from 2 of the APIs in a database, meaning in general only 1 API is used for the display). This tutorial was meant to demonstrate some coding examples, and realistically if you have millions of visitors then your database is going to get very large, the page will end up huge and of course the map will get crowded.
3) The idea is useful though. It could be extended very easily into a unique guestbook type of script by changing the database structure (accommodating for name, email address, message etc.), and using a message pointer provided by the Google Maps API to show the message left by the visitor when their location marker is clicked. It opens up the gates for some interesting concepts.
Document Management Solution on Microsoft SharePoint to automate your business processes and facilitate exchange of documents and information internally and with your Sub Contractors with pre- defined workflows triggered with approvals,
Document Management Solution on Microsoft SharePoint to automate your business processes and facilitate exchange of documents and information internally and with your Sub Contractors with pre- defined workflows triggered with approvals, authorizations, co-authorizations and authentications.
[url=http://www.youtube.com/watch?v=8CR7fFIOS48]sharepoint services[/url]
[url=http://www.youtube.com/watch?v=8CR7fFIOS48]Sharepoint site[/url]
[url=http://www.youtube.com/watch?v=8CR7fFIOS48]Sharepoint developer[/url]
I am agree with above all steps.
Jordan is one of the first
in the Middle East to ensure building codes that offer accessibility for the disabled requiring the use of wheelchairs, prosthetics and other forms of mobility for the disabled. In 2005, Air Jordan Retro 3 Shoes was recently awarded the Franklin Delano Roosevelt International Disability Award. According to the award presenter, former President Roosevelt's granddaughter Anna Eleanor Roosevelt, Jordan has inspired and set an example for all countries for its efforts and inspiration in providing accessibility and services for the disabled, who "all too often prevent those with disabilities from joining the mainstream of civil society." Jordan Leading the Way Jordan has been recognized in a number of ways in regard to their approach to care, education and resources for the disabled: ?First country in the Middle East to enact legislation and develop easy-access building codes. ?First Arab/Islamic country to receive the Franklin Delano Roosevelt International Disability Award ?Created the CIEE (Council on International Education Exchange) to encourage those with disabilities to come to Jordan to engage in study-abroad programs. Jordan's Constitution on Education Jordan Retro Disability Law includes the following specifications: "The philosophy of the Kingdom of Jordan with regard to its disabled citizens is based on Arabic-Islamic values, the Jordanian Constitution, The National Charter, the Laws governing education and higher education, the World Declaration on Human Rights, and the International Declaration on Disabled Persons; and stresses the following rights with respect to education: ?Integration into the general life of the society ?Education and higher education commensurate with his/her abilities ?Obtain such aides, equipment and materials that assist them in education ?Access to education, training and rehabilitation for those who have multiple and severe disabilities ?Participate and decision making pertaining to them" Conclusion Jordan continues to be a leader not only in medical technology, training and quality medical care, but also the physical, mental and emotional needs of the disabled, regardless of condition or prognosis. Article Three of Jordan's Disability and Education Law determines the rights of all disabled individuals to have access to and receive higher education as far as their capabilities can take them, and the right to training and rehabilitation in order to integrate the disabled into society as much as possible. As in the past, Air Jordan Shoes Women continues to lead the way.
Hi,
We provide professional onsite services to business and corporations. Customers can expect full service and satisfaction with an affordable price. We repair most all brands, and we are a certified warranty repair center for Sharp, Brother, and more. In addition to any necessary repairs, each piece of equipment is cleaned, adjusted and thoroughly tested before delivery.Because your time is very important, we provide quick response times and strive to diagnose and resolve problems quickly and easily. We work with your schedule to get your equipment up and running quickly and reliably.
[url=http://westequipment.com]copiers[/url]
View all user comments for this tutorial.