Loading large amount of points for use with Google Maps API
Moderator: General Moderators
Loading large amount of points for use with Google Maps API
I have a list of about 2500 lattitude/longitude coordinates that will need to be loaded into a PHP page that will turn them into 4 different map overlays (4 counties). What would be the best way to store these coordinates and load them into my application? Database?
I don't really have enough information to answer that, but something like this maybe..
Code: Select all
CREATE TABLE `LocationData` (
`LocationID` int(10) NOT NULL auto_increment,
`County` varchar(2) default NULL,
`Latitude` decimal(10,6) default NULL,
`Longitude` decimal(10,6) default NULL,
PRIMARY KEY (`LocationID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=0 ;