Changeset 3216344
- Timestamp:
- 01/03/2025 09:33:45 AM (15 months ago)
- Location:
- nextgen-gallery-geo/trunk
- Files:
-
- 3 edited
-
bing-map.php (modified) (4 diffs)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nextgen-gallery-geo/trunk/bing-map.php
r3215432 r3216344 13 13 * @since 2.0.8 Function geo2_maps() amended. 14 14 * @since 2.1.0 Function geo2_maps() amended. 15 * @since 2.1.1 Function geo2_maps() amended. 15 16 16 17 * @author Pawel Block <pblock@op.pl> … … 35 36 * @since 2.0.8 Exif data not acquired if not needed. 36 37 * @since 2.1.0 Updated to output amended js code for Azure Maps. 38 * @since 2.1.1 JS function geo2_Infobox_xxx() corrected to return shape properties for Routes. 37 39 * 38 40 * @see function geo2_maps_data(), function geo2_maps_data_single(), function geo2_maps_check_content() in functions.php. … … 367 369 shape = geo2_maps_shapeMetadata_' . $options['mid'] . '(shape, properties, title, description); 368 370 shape.addProperty( "position", e.position); 369 geo2_Infobox_' . $options['mid'] . '( shape ); 371 properties = shape.getProperties(); 372 geo2_Infobox_' . $options['mid'] . '( shape, properties ); 370 373 } 371 374 }); … … 931 934 infoboxLocation = shape.geometry.coordinates; 932 935 } else { 933 // for shapes from paths TODO: check this.934 936 infoboxLocation = properties.position; 935 937 }'; -
nextgen-gallery-geo/trunk/plugin.php
r3215458 r3216344 23 23 * Plugin URI: https://wordpress.org/plugins/nextgen-gallery-geo/ 24 24 * Description: Geo2 Maps Add-on for NextGEN Gallery is a flexible plugin, displaying beautiful maps with your photos by using EXIF data or geocoding. 25 * Version: 2.1. 025 * Version: 2.1.1 26 26 27 27 * Author URI: http://www.geo2maps.plus -
nextgen-gallery-geo/trunk/readme.txt
r3215462 r3216344 46 46 47 47 1. Install NextGEN Gallery - This plugin can only work with it. Create some galleries. 48 2. Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation. 49 3. Acquire the Azure Maps API Key from Microsoft Azure page at https://azure.microsoft.com (You can find a links on the General tab inside this plugin.) 50 4. In the Azure account add your domain to CORS allowed origins. 51 5. Go to the admin panel ( NextGEN Gallery -> Geo2 Maps ) and paste the Key to the corresponding field on the Geocoding tab. 52 6. Configure any options as you require. 48 2. Install Geo2 Maps from plugins repository or download and extract the zip file into the wp-content/plugins/ directory of your WordPress installation. 49 3. Optional. If upgrading from version 2.0.X or lower check "Restore default settings" of the Geo2 Maps plugin at the bottom of the General tab and deactivate and activate this plugin. 50 4. Acquire the Azure Maps API Key from Microsoft Azure page at https://azure.microsoft.com (You can find a links on the General tab inside this plugin.) 51 5. In the Azure account add your domain to CORS allowed origins. 52 6. Go to the admin panel ( NextGEN Gallery -> Geo2 Maps ) and paste the Key to the corresponding field on the Geocoding tab. 53 7. Configure any options as you require. 53 54 54 55 = Optional = … … 175 176 == Changelog == 176 177 177 = V2.1.0 - 24.11.2024 = 178 = V2.1.1 - 02.01.2025 = 179 180 * Bugfix: Paths show infoboxes again 181 182 = V2.1.0 - 30.12.2024 = 178 183 179 184 * NEW: Maps engine migrated to Azure Maps API (new key required)
Note: See TracChangeset
for help on using the changeset viewer.