tags:

views:

16

answers:

2

I am using PHP open source and I need the map of a country highlighting all the states in different colors. Once a particular state is hovered over, some info about the state needs to appear. Please suggest me how to do this. Is it possible to do this using some basic stuff ... I mean nothing like what goes beyond my knowledge... Not sure if the tags that i have posted this query in is right...

A: 

Try using html image maps if you dont want to set the coordinates manually you can use a tool like dreamweaver so you can draw the shapes over the image and the application will create the coordinates for you

Enrique
A: 

Take a look at Google's Chart API - it has a map type chart, and allows active manipulations. Plenty of samples available. Be aware though that it is manipulated using JavaScript (client side) not PHP.

If you just want a static chart, look here.

Traveling Tech Guy