Version 1.0.0

This commit is contained in:
neveldo
2015-01-02 22:59:19 +01:00
parent f83dabf6ac
commit af6dac12c9
6 changed files with 22 additions and 22 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
# jQuery Mapael - Dynamic vector maps
The complete documentation is available on [Mapael website](http://neveldo.fr/mapael).
The complete documentation is available on [Mapael website](http://www.vincentbroute.fr/mapael).
Additional maps are stored in the repository ['neveldo/mapael-maps'](https://github.com/neveldo/mapael-maps).
@@ -12,8 +12,8 @@ For example, with Mapael, you can display a map of the world with clickable coun
As Raphaël, Mapael supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+.
![Dataviz example](http://neveldo.fr/mapael/world-example.png)
[See this example !](http://neveldo.fr/mapael/usecases/world)
![Dataviz example](http://www.vincentbroute.fr/mapael/world-example.png)
[See this example !](http://www.vincentbroute.fr/mapael/usecases/world)
## Key features
@@ -73,7 +73,7 @@ Here is the simplest example that shows how to display an empty map of the world
## License
Copyright (C) 2013-2014 [Vincent Brouté](http://neveldo.fr)
Copyright (C) 2013-2015 [Vincent Brouté](http://www.vincentbroute.fr)
jQuery Mapael is licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php).
+2 -2
View File
@@ -1,13 +1,13 @@
{
"name": "neveldo/jQuery-Mapael",
"version": "0.7.1",
"version": "1.0.0",
"main": "./js/jquery.mapael.js",
"description": "jQuery Mapael is a jQuery plugin based on raphael.js that allows you to display dynamic vector maps.",
"license": "MIT",
"ignore": [],
"dependencies": {
"raphael": ">=2.1.2",
"jquery": ">=1.9.0",
"jquery": ">=1.7",
"jquery-mousewheel": ">=3.1.6"
}
}
+1 -1
View File
@@ -115,7 +115,7 @@
<b>All example for jQuery Mapael are available on <a href="http://www.neveldo.fr/mapael/">neveldo.fr/mapael</a>.</b>
<b>All example for jQuery Mapael are available <a href="http://www.vincentbroute.fr/mapael/">here</a>.</b>
</div>
+2 -2
View File
@@ -71,7 +71,7 @@ $(function(){
// Image plot
'paris' : {
type : "image",
url: "http://www.neveldo.fr/mapael/marker.png",
url: "http://www.vincentbroute.fr/mapael/marker.png",
width: 12,
height: 40,
latitude : 48.86,
@@ -376,7 +376,7 @@ $(function(){
// Image plot
'paris' : {
type : "image",
url: "http://www.neveldo.fr/mapael/marker.png",
url: "http://www.vincentbroute.fr/mapael/marker.png",
width: 12,
height: 40,
latitude : 48.86,
+3 -3
View File
@@ -3,9 +3,9 @@
* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js)
* Requires jQuery and raphael.js
*
* Version: 0.7.1 (23-01-2014)
* Version: 1.0.0
*
* Copyright (c) 2014 Vincent Brouté (http://www.neveldo.fr/mapael)
* Copyright (c) 2015 Vincent Brouté (http://www.vincentbroute.fr/mapael)
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php).
*
*/
@@ -294,7 +294,7 @@
// Hook that allows to add custom processing on the map
options.map.afterInit && options.map.afterInit($self, paper, areas, plots, options);
$(paper.desc).append(" and Mapael (http://neveldo.fr/mapael)");
$(paper.desc).append(" and Mapael (http://www.vincentbroute.fr/mapael/)");
});
};
+8 -8
View File
@@ -9,16 +9,16 @@
"dataviz",
"dynamic"
],
"version": "0.7.1",
"version": "1.0.0",
"author": {
"name": "Vincent Brouté",
"url": "http://www.neveldo.fr"
"url": "http://www.vincentbroute.fr"
},
"maintainers": [
{
"name": "Vincent Brouté",
"email": "neveldo@gmail.com",
"url": "http://www.neveldo.fr"
"email": "contact@vincentbroute.fr",
"url": "http://www.vincentbroute.fr"
}
],
"licenses": [
@@ -28,12 +28,12 @@
}
],
"bugs": "https://github.com/neveldo/jQuery-Mapael/issues",
"homepage": "http://www.neveldo.fr/mapael/",
"docs": "http://www.neveldo.fr/mapael/",
"demo": "http://neveldo.fr/mapael/usecases/world/",
"homepage": "http://www.vincentbroute.fr/mapael/",
"docs": "http://www.vincentbroute.fr/mapael/",
"demo": "http://www.vincentbroute.fr/mapael/usecases/world/",
"download": "https://github.com/neveldo/jQuery-Mapael/tags",
"dependencies": {
"jquery": ">=1.7",
"raphael": ">=2.1"
"raphael": ">=2.1.2"
}
}