This commit is contained in:
parent
13672ec9c6
commit
5000769327
17
readme.txt
17
readme.txt
|
@ -11,7 +11,8 @@ Add a gpx trak with altitude graph
|
||||||
|
|
||||||
== Description ==
|
== Description ==
|
||||||
|
|
||||||
Add a gpx trak with altitude graph
|
This plugin has, as input, the GPX file with the track you've made. As output it shows the map of the track, fixed with an altitude map.
|
||||||
|
You can also point the track and move your cursor both in the usual map or in the altitude map.
|
||||||
|
|
||||||
WP-GPX-Maps
|
WP-GPX-Maps
|
||||||
|
|
||||||
|
@ -23,22 +24,22 @@ e.g.
|
||||||
|
|
||||||
1. Use the classic wordpress plugin installer or copy the plugins folder to the `/wp-content/plugins/` directory
|
1. Use the classic wordpress plugin installer or copy the plugins folder to the `/wp-content/plugins/` directory
|
||||||
1. Activate the plugin through the 'Plugins' menu in WordPress
|
1. Activate the plugin through the 'Plugins' menu in WordPress
|
||||||
1. Add the shortcode [sgpx gpx="<relative path to your gpx>"]
|
1. Add the shortcode [sgpx gpx=">relative path to your gpx<"]
|
||||||
|
|
||||||
== Frequently Asked Questions ==
|
== Frequently Asked Questions ==
|
||||||
|
|
||||||
= Is it free? =
|
|
||||||
|
|
||||||
Yes!
|
|
||||||
|
|
||||||
= What happening if I've a very large gpx? =
|
= What happening if I've a very large gpx? =
|
||||||
|
|
||||||
This plugin will print a small amout of points in orther to speedup javascript and pageload.
|
This plugin will print a small amout of points in orther to speedup javascript and pageload.
|
||||||
|
|
||||||
|
= Is it free? =
|
||||||
|
|
||||||
|
Yes!
|
||||||
|
|
||||||
== Screenshots ==
|
== Screenshots ==
|
||||||
|
|
||||||
1. Result
|
1. Screenshot Sample
|
||||||
2. Admin are
|
2. Screenshot Admin area
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
@ -146,5 +146,4 @@ function WP_GPX_Maps_html_page() {
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
function getPoints($gpxPath,$gpxOffset = 10)
|
function getPoints($gpxPath,$gpxOffset = 10)
|
||||||
{
|
{
|
||||||
$points = array();
|
$points = array();
|
||||||
|
|
Loading…
Reference in New Issue