If you are gettin the sql error try adding this table
[sql]
CREATE TABLE IF NOT EXISTS `dc_membermap` (
`markerid` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL,
`desc` text,
`lat` float(10,6) NOT NULL,
`lon` float(10,6) NOT NULL,
PRIMARY KEY (`markerid`),
UNIQUE KEY `idx_user` (`userid`))
[/sql]
If anyone tries this and they get an error, please could they let me know what the error is so I can fix. Cheers. Tested on 5.1 as thats the only version I have available at the moment
|