1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| (function($){
$.fn.worldmap = function( options ){
return this.each( function(){
console.log( "worlmap", JSON.stringify( $.fn.worldmap.defaults ) );
});
};
$.fn.worldmap.defaults = {
"coords" : {}
};
})(jQuery);
(function($){
var coords = {
"departments" : [
[
{
"id" : "1",
"post_code" : "01",
"name_zone" : "test1",
"name_zone_upper" : "TEST1",
"x" : 20,
"y" : 20,
"coords" : "20,20,20,25,25,25,25,20,20,20"
}
],
[
{
"id" : "2",
"post_code" : "02",
"name_zone" : "test2",
"name_zone_upper" : "TEST2",
"x" : 40,
"y" : 40,
"coords" : "40,40,40,45,45,45,45,40,40,40"
}
]
]
};
$.fn.worldmap.defaults.coords["france"] = coords;
})(jQuery);
$( function(){
$( "body" ).worldmap();
}); |
Partager