Plugin Directory

Changeset 969677


Ignore:
Timestamp:
08/21/2014 12:43:10 PM (12 years ago)
Author:
jhayghost
Message:
  • updated readme.txt
Location:
ideal-interactive-map/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ideal-interactive-map/trunk/interactive-map.php

    r969561 r969677  
    44Plugin URI: http://idealwebgeek.com
    55Description: Interactive and Informative map
    6 Version: 0.1
     6Version: 1.1
    77*/
    88define("PLUGINURL", dirname(__FILE__) );
     
    2020        add_action("wp_ajax_mapsubpage", array($this, "ajax_mapsubpage"), 20);
    2121        add_action("wp_ajax_nopriv_mapsubpage", array($this, "ajax_mapsubpage"), 20);
    22         //remove_filter( 'the_content', 'wpautop' );
    2322        add_action( 'wp_enqueue_scripts', array($this, "header") );
    2423        add_action("wp_footer", array($this, "footer"), 20);
     
    4645            wp_enqueue_script('jquery-ui-tabs');
    4746           
    48         //  wp_enqueue_style( 'Sans-narrow', 'http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700' , array(), '20140319', true );
    4947            wp_enqueue_style( 'jquery-ui-css', '//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css', false, '20140319', false);
    5048            wp_enqueue_style( 'scrollbar', plugins_url( 'src/perfect-scrollbar.css' , __FILE__ ));
     
    6664        </div>
    6765        <div id="mapreadmore">
    68        
    6966        </div>
    7067xxx;
     
    9188                $country_code = get_post_meta($id, "map_country", true);
    9289                if($country_code && isset($countries[$country_code])){
    93                
    94                    
     90                       
    9591                    $areas[] = array(
    9692                                            "id"=>$country_code,
     
    131127       
    132128        if(!is_page($page) && $page == 0) return;
    133            
    134129           
    135130     $image = plugins_url( 'ammap/images/' , __FILE__ );
     
    192187           
    193188            function zoomOut () {
    194                 map.zoomOut();
    195                
     189                map.zoomOut();
    196190            }
    197191           
     
    519513    }
    520514   
    521    
    522515    /**
    523516     * Add options page
  • ideal-interactive-map/trunk/readme.txt

    r969561 r969677  
    1 === Ideal Interactive Maps ===
     1=== Ideal Interactive Map ===
    22Contributors: Jhayghost
    3 Tags: interactive map, maps, amcharts map, amcharts, map with country description
     3Tags: interactive map, maps, amcharts map, amcharts, map with country description, Interactive world, javascript maps, html5maps, non-flash map
    44Requires at least: 3.1
    55Tested up to: 3.9.2
    6 Stable tag: 1.0
     6Stable tag: 1.1
    77Author: Jhayghost
    88Author URI: http://www.idealwebgeek.com/
    99License: GPLv2 or later
    1010
    11 Easy Set Up:
    12 
    13 This is a fully functional world map with clickable country links that will pop a dedicated individual description. Each country is represented by an auto generated flag.
    14 
    15 This plugin requires a very easy settings elaborated on the Installations part.
     11Fully functional world map with a professional looking clickable country links that is very easy to set up.
    1612
    1713
     
    1915
    2016Have you come across the idea of implementing a map on your WordPress site, but found it difficult to implement and costly to be outsourced? I had thought the same way as well few months back.
     17
     18This is a fully functional world map with clickable country links that will pop a dedicated individual description. Each country is represented by an auto generated flag.
    2119
    2220This complete list of countries around the globe with distinctive maps will help you implement an interactive, professional and lavishly looking map. We owe amcharts.com for the fulfilment of this plugin.
     
    2927
    3028Resources Used:
    31 Custom Metabox: https://github.com/tammyhart/Reusable-Custom-WordPress-Meta-Boxes
    32 Map: http://www.amcharts.com/javascript-maps/
    33 Flags: Phoca Flags 1.0.0 by Jan Pavelka http://www.phoca.cz
    34 Perfect scrollbar: Hyeonje Alex Jun and other contributors
     29
     30- Map: http://www.amcharts.com/javascript-maps/
     31
     32- Custom Metabox: https://github.com/tammyhart/Reusable-Custom-WordPress-Meta-Boxes
     33
     34- Flags: Phoca Flags 1.0.0 by Jan Pavelka http://www.phoca.cz
     35
     36- Perfect scrollbar: Hyeonje Alex Jun and other contributors
    3537
    3638== Installation ==
    37391) Upload the Ideal Interactive Map plugin to your website and Activate it.
     40
    38412) Create new page and paste this shortcode [iwg_maps] to the wysiwyg WordPress Editor.
     42
    39433) Take note of the page id for the page you have just created.
     44
    40454) Go to Settings -> Interactive Map Settings and paste the Page ID on the field provided, hit Save Changes.
     46
    41475) Once you had successfully set up the plugin, you should be able to find Manage Maps menu on the WordPress admin menu on the right hand side of your admin page.
     48
    42496) Manage Maps section will give you the freedom to add the countries that you wanted to include in your map. You don’t have to worry about the lists of the country names as it is already completely laid upon in a drop down format.
    4350
     
    47542. Active/clicked individual country
    48553. Manage Map admin part
    49 
    50 
Note: See TracChangeset for help on using the changeset viewer.