All Projects → neveldo → Jquery Mapael

neveldo / Jquery Mapael

Licence: mit
jQuery plugin based on raphael.js that allows you to display dynamic vector maps

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jquery Mapael

Mapsforge
Vector map library and writer - running on Android and Desktop.
Stars: ✭ 885 (-9.79%)
Mutual labels:  vector, map
covid-19
Current and historical coronavirus covid-19 confirmed, recovered, deaths and active case counts segmented by country and region. Includes csv, json and sqlite data along with an interactive website explorer.
Stars: ✭ 15 (-98.47%)
Mutual labels:  map, dataviz
Free Gophers Pack
✨ This pack of 100+ gopher pictures and elements will help you to build own design of almost anything related to Go Programming Language: presentations, posts in blogs or social media, courses, videos and many, many more.
Stars: ✭ 2,343 (+138.84%)
Mutual labels:  vector, svg
Feathericon
simply generic vector icon collection - including sketch file, svg files, and font files.
Stars: ✭ 178 (-81.86%)
Mutual labels:  vector, svg
Magicasakura
MagicaSakura 是 Android 多主题框架。~ is an Android multi theme library which supporting both daily colorful theme and night theme.
Stars: ✭ 3,455 (+252.19%)
Mutual labels:  vector, svg
Richpath
💪 Rich Android Path. 🤡 Draw as you want. 🎉 Animate much as you can.
Stars: ✭ 2,259 (+130.28%)
Mutual labels:  vector, svg
vtm
OpenGL vector map library - running on Android, iOS, Desktop and browser.
Stars: ✭ 212 (-78.39%)
Mutual labels:  map, vector
Containers
This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory.
Stars: ✭ 125 (-87.26%)
Mutual labels:  vector, map
Svgmap
svg地图组件,完整版包含城市及区县数据及更多扩展功能。。。
Stars: ✭ 298 (-69.62%)
Mutual labels:  svg, map
Mega Doodles Pack
🔥 Big vector pack with hand-drawn doodles for presentations, social media, blog posts and so on
Stars: ✭ 258 (-73.7%)
Mutual labels:  vector, svg
Aegis Icons
Unofficial 2FA entry icons for open source Android authenticator Aegis
Stars: ✭ 153 (-84.4%)
Mutual labels:  vector, svg
Pts
A library for visualization and creative-coding
Stars: ✭ 4,628 (+371.76%)
Mutual labels:  vector, svg
Plutovg
Tiny 2D vector graphics library in C
Stars: ✭ 141 (-85.63%)
Mutual labels:  vector, svg
Built vector
Generate Flutter vector code from a subset of SVG files.
Stars: ✭ 33 (-96.64%)
Mutual labels:  vector, svg
React Designer
It's not art
Stars: ✭ 1,762 (+79.61%)
Mutual labels:  vector, svg
Vectorlogozone
3,000+ gorgeous SVG logos, perfect for your README or credits page
Stars: ✭ 239 (-75.64%)
Mutual labels:  vector, svg
Ml Logos
📷 ✨ SVG logos for various ML libraries
Stars: ✭ 99 (-89.91%)
Mutual labels:  vector, svg
Svg.skia
An SVG rendering library.
Stars: ✭ 122 (-87.56%)
Mutual labels:  vector, svg
leaflet heatmap
简单的可视化湖州通话数据 假设数据量很大,没法用浏览器直接绘制热力图,把绘制热力图这一步骤放到线下计算分析。使用Apache Spark并行计算数据之后,再使用Apache Spark绘制热力图,然后用leafletjs加载OpenStreetMap图层和热力图图层,以达到良好的交互效果。现在使用Apache Spark实现绘制,可能是Apache Spark不擅长这方面的计算或者是我没有设计好算法,并行计算的速度比不上单机计算。Apache Spark绘制热力图和计算代码在这 https://github.com/yuanzhaokang/ParallelizeHeatmap.git .
Stars: ✭ 13 (-98.67%)
Mutual labels:  map, dataviz
Ngx Charts
📊 Declarative Charting Framework for Angular
Stars: ✭ 4,057 (+313.56%)
Mutual labels:  svg, dataviz

jQuery Mapael - Dynamic vector maps

Build Status CDNJS

The complete documentation is available on Mapael website (repository: 'neveldo/mapael-documentation').

Additional maps are stored in the repository 'neveldo/mapael-maps'.

The documentation of Raphael.js is available here (mirror).

Overview

jQuery Mapael is a jQuery plugin based on raphael.js that allows you to display dynamic vector maps.

For example, with Mapael, you can display a map of the world with clickable countries. You can also build simple dataviz by setting some parameters in order to automatically set a color depending on a value to each area of your map and display the associated legend. Moreover, you can plot cities on the map with circles, squares or images by their latitude and longitude. Many more options are available, read the documentation in order to get a complete overview of mapael abilities.

Mapael supports all modern browsers and Internet Explorer 9+. For older versions of IE, you can load jQuery 1.11.x and Raphael.js 2.1.2 as dependencies, most of the jQuery Mapael features should work fine.

Dataviz example

See this example !

Key features

  • based on jQuery and raphael.js. And optionally based on jQuery mousewheel for the zoom on mousewheel feature.
  • Interactive. Set href, tooltip, add events and many more on the elements of your map.
  • Plottable cities Cities can be plotted on the map with circles, squares, images or SVG paths by their latitude and longitude
  • Areas and plotted points colorization with legends. Mapael automatically sets attributes like color and size to each area and plotted point displayed on map and generates an interactive legend in order to build pretty dataviz
  • Links between cities. You can draw links between the cities of the map.
  • Easy to add new maps. Build your own maps based on SVG paths
  • SEO-friendly. An alternative content can be set for non-JS users and web crawlers
  • Resizable Maps are easily resizable.
  • Zoom Zoom and panning abilities (also on mobile devices).

Installation

Directly in your page

Note on dependencies: jQuery and Raphael (and Mousewheel, if needed) must be loaded before Mapael in order to work properly.

Note on maps: map files must be loaded after Mapael in order to work properly.

Using CDN

Include in your project page one of these tags:

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-mapael/2.2.0/js/jquery.mapael.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/js/jquery.mapael.min.js"></script>

Using self-hosted

Download the latest version and extract jquery.mapael.min.js in your project.

Then, add the script to your page (update the path as needed):

<script src="path/to/jquery.mapael.min.js"></script>

Using a package manager

NPM / Yarn

In your project root, run either commandline:

npm i --save jquery-mapael
yarn add jquery-mapael

However, if you don't need the optional Mousewheel feature (for Zoom feature), then you can use the --no-optional flag to skip optional dependencies.

Use either:

npm i --no-optional jquery-mapael
yarn add --no-optional jquery-mapael

Then in your application:

require('jquery-mapael');

Or, in ES6:

import 'jquery-mapael';

Bower

In your project root, run:

bower install jquery-mapael --save

Basic code example

Here is the simplest example that shows how to display an empty map of the world :

HTML :

    <div class="container">
        <div class="map">Alternative content</div>
    </div>

JS :

    $(".container").mapael({
        map : {
            name : "world_countries"
        }
    });

Examples

Basic

Advanced

Contributing

Want to contribute? See the CONTRIBUTING file.

License

Copyright (C) 2013-2020 Vincent Brouté

jQuery Mapael is licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php).

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].