Interactive maps from Fla-shop.com can be installed on any website. The installation process depends on the type of website management system. For WordPress it is the easiest installation, taking no more than 1 minute.
All of our interactive map products are divided into two main categories. These are plugins for WordPress and JavaScript/CSS maps for any other website.
If your site uses WordPress, the installation steps are very simple, similar to any other downloadable WP plugins.
Even more detailed instructions with screenshots are available in the article "How to install the WordPress map plugin".
Installing the map requires two simple steps
In this example, we use the demo version of clickable JavaScript US map.
To proceed, you need to be able to upload files to the server, for example, via FTP. Also, you need to be able to insert the code to the page. Simply include the necessary scripts and styles in your code, and create a new map object as follows:
<div id='map-container'></div>
<link href="map.css" rel="stylesheet">
<script src="raphael.min.js"></script>
<script src="settings.js"></script>
<script src="paths.js"></script>
<script src="map.js"></script>
<script>
var map = new FlaMap(map_cfg);
map.drawOnDomReady('map-container');
</script>
Here, we create an empty DIV container. The map object we create in the last (embedded) script renders the map directly into this DIV by calling drawOnDomReady(). A JavaScript settings object must be passed (in JSON), called settings.js above. It is passed into the draw function through a variable within that file called map_cfg. This object contains the basic map data, such as state names, and their associated codes. The file is included in the download. If you want, you can change these settings to alter the appearance of the map. All available settings can be found here [API reference].
Try to customize US map in the new online editor, it's very easy and doesn't require registration.
You can find detailed step-by-step guides in the following articles