I am making a browser-based medieval strategy game, and one feature will be route plotting. When you send out an attack, you will be able to choose it's specific route. The route will be laid out using AJAX, but I want to know the best way to store it. Each main town is going to have it's center set at a (#,#) integer coordinate, but paths might deviate from towns as much as (#.1,#.1). I need a way to store my route in a Database. Would using Longtext and just having the route in as a list ([0.0,0.0],[0.5,0.5]) be an effective method? Any other ways of storing it?
Thanks,
-Nick

Thanks,
-Nick
