I’ve written a Javascript plugin. I need to pass an array of arrays (array of latitude/longitude pairs) to it. In Javascript it looks like this:
Code
var locData = [
[59.62856947827632, 3.944420249288397],
[59.62814600635401, 3.944630157340777],
[59.62779724440824, 3.944840256674767],
[59.62757954693874, 3.944887326777842],
// many more
];
What is the best way to pass that from a krpano xml <plugin> element?