tags:

views:

41

answers:

1

Hello guys,

is there any offline map libraries that can be used from PHP? I want to make an application which displays all data position of stations (with latitude and longitude) on a map.

But the user doesn't want this application connect to internet, so I can't use Google Maps as a solution. Do you know any offline map libraries that can mark position based latitute and longitude information?

Thanks in advance

+1  A: 

If you need to render graphical maps of anywhere on the globe, you're gonna need a lot of geographical data and a lot of storage (unless you're keeping the resolution low). For geographical data of the U.S., you can purchase bulk data sets (or obtain smaller free data sets) from certain commercial organizations, or try GeoData.gov.

Once you've obtained your GIS data set, you can use Image_GIS to visualize the data. I haven't used the library, so I don't know how the results look, but that's one solution.

Lèse majesté
http://www.openstreetmap.org/ is another good source for the map data, or http://openmaps.eu/ for eastern european maps
Mark Baker
I haven't heard openstreetmap.org before. Gonna take a look at it. Thank you
bhoo-day
@Mark BakerHave you ever put marker/poi on offline openstreetmap based on latitute and longitude?
bhoo-day
I have already exported my country map from openstreetmap (in PNG format) but now, I'm confused to add marker or poi on it...:(
bhoo-day
Not on maps from openstreetmap, no! Just on normal jpg files... and mapping long/lat to a pixel position on an image is a whole different question
Mark Baker