In this example I have used the map of the Itasca demo of the Mapserver. I have done only small changes to the map file. The Itasca demo has (into the html file) the parameters of the path where to store the images:
IMAGEPATH "set in index.html" IMAGEURL "set in index.html"
I have changed them as fixed path
IMAGEPATH "/tmp/ms_tmp/" IMAGEURL "/ms_tmp/"
Than I have set as STATUS ON several layers for a better map.
The Database
The positions and the images paths that have to be shown on the map are stored into a table of a database in MySql. I have created a new database named "mapexample" and a new table "weather":
CREATE TABLE weather (
id bigint(20) NOT NULL auto_increment,
imagepath varchar(255) default NULL,
x double(16,4) default NULL,
y double(16,4) default NULL,
PRIMARY KEY (id)
)
and than I have inserted into the table the positions of the weather images and the path of every icon:
INSERT INTO `weather` VALUES (1, '/data/weather/icons/sunny.gif', 478107.0000, 5250301.0000); INSERT INTO `weather` VALUES (2, ''/data/weather/icons/cloudy.gif', 408107.0000, 5220301.0000); INSERT INTO `weather` VALUES (3, ''/data/weather/icons/storm.gif', 468107.0000, 5270301.0000); INSERT INTO `weather` VALUES (4, ''/data/weather/icons/variable.gif', 408107.0000, 5310301.0000);
It is not necessary for the images to be stored into a directory visible from the web, because are taken directly by the script and then merged with the map.
The PHPMapscript code Here is the code I have used for generating the map: ">
More info: http://www.parsec.it/tutorials/
Roberto Colonello owns and operates http://www.parsec.it/tutorials/ and http://www.parsec.it/tutorials/
apartment cleaning near Highland Park ..When you purchase a new item from a Yahoo! Store,... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
While most marketers are beginning to understand the critical importance... Read More
There's been widespread speculation about the new legislation being introduced... Read More
If you've been developing websites on Mars for the past... Read More
A PHP Redirect automatically transfers a web user from one... Read More
Losing website sales and traffic is sometimes simply a case... Read More
If you haven't made the sales and built your clients... Read More
Go to any internet marketing forum you want these days... Read More
What do you mean, you don't have a website for... Read More
Many executives and investors are skeptical that software products can... Read More
Better Web Site ROIHow to increase your business profitability by... Read More
After years of working with entrepreneurs who developed their first... Read More
When we review the sites of potential clients, there are... Read More
When I started my company in 2002, I knew I... Read More
The DDA (Disability Discrimination Act) states that service providers must... Read More
Are bloated images slowing down your web site and causing... Read More
If you ever want to create a state directory, article... Read More
Every small business owner knows that they need a website,... Read More
Internet Marketing is not a miracle marketing strategy ? competition... Read More
When used to describe a web site, the term "sticky"... Read More
You've just finished congratulating your marketing team. After six months... Read More
Recently, a friend asked "What's the deal with those DIY... Read More
You have seen those web pages where they have the... Read More
Let's begin by setting some limits. If you're like me,... Read More
cleaning lady near Arlington Heights ..When people think about the Internet, they think about technology.... Read More
Research reveals three important facts:1) The Internet is one of... Read More
Knowledge is power.And undoubtedly, it is the key to making... Read More
A website is like an information flow, with you as... Read More
Project Safekids provides webmasters a valuable tool which could save... Read More
"Don't Sell the Steak, Sell the Sizzle."Have you heard of... Read More
There are several reverse bid freelance sites out there. Beyond... Read More
You have permission to publish this article electronically, in print,... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
One of the things that Internet excels is disseminating information... Read More
Yahoo has long offered email, an online calendar, notes, bookmarks,... Read More
While most marketers are beginning to understand the critical importance... Read More
1. Splash pagesMost of the time splash pages are uncalled... Read More
Losing website sales and traffic is sometimes simply a case... Read More
There have been many significant changes to the face of... Read More
Webmaster tools are vital to becoming both efficient and effective... Read More
Creating a content management system either from scratch,... Read More
1) A marketing necessityI still hear it said from time... Read More
Failure, just like success, is measured differently by each and... Read More
This simple question can take on several different forms, but... Read More
1. Upload robots.txt file in to your root directory and... Read More
Design and layout can make your communication come alive and... Read More
In the big, wide online world there are millions of... Read More
For years now I've been looking to start my own... Read More
Installment 1Developing State-enabled Applications With PHPWhen a user is browsing... Read More
Web Development |