edit README, remove leaflet.label

merge-requests/1/head
Julien Veyssier 2016-12-02 16:38:07 +01:00
parent 1d884b89bc
commit 7f323b030c
6 changed files with 55 additions and 52 deletions

View File

@ -2,4 +2,30 @@
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples. If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples.
Simple Owncloud/Nextcloud app to load, edit and save GPX file on an interactive map.
You can load/save file from your Owncloud/Nextcloud file storage.
There is a file explorer inside the app interface to select a file to load and a folder to save what is currently on the map.
This is not a perfect GPX editor.
**WARNING** GpxEdit does not save any elevation/time data, even if you loaded a gpx file which has elevation/time information. Keep that in mind if you overwrite a file.
Markers are saved as waypoints. Lines (polylines) are saved as tracks with one segment.
It is possible to set a name, description and comment for each marker and line in a popup.
These information are saved in the gpx file.
If you want more powerfull GPX editors, take a look at :
- [Viking](https://sourceforge.net/projects/viking/) which is the best IMHO
- [QLandKarteGT](https://bitbucket.org/kiozen/qlandkarte-gt)
- [QMapShack](https://bitbucket.org/maproom/qmapshack/wiki/Home)
- [JOSM](https://josm.openstreetmap.de/)
GpxEdit :
- works with server-side encryption.
- works with shared files.
- uses [Leaflet.Draw](https://github.com/Leaflet/Leaflet.draw) amazing plugin
- uses many other Leaflet plugins like Minimap, Sidebar2, MeasureControl, MousePositionControl
- uses JQuery
- uses [JQuery File Tree](https://github.com/jqueryfiletree/jqueryfiletree) amazing file tree library
Any feedback will be appreciated. Any feedback will be appreciated.

View File

@ -5,13 +5,40 @@
<description> <description>
# GpxEdit owncloud/nextcloud application # GpxEdit owncloud/nextcloud application
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples.
Simple Owncloud/Nextcloud app to load, edit and save GPX file on an interactive map.
You can load/save file from your Owncloud/Nextcloud file storage.
There is a file explorer inside the app interface to select a file to load and a folder to save what is currently on the map.
This is not a perfect GPX editor.
**WARNING** GpxEdit does not save any elevation/time data, even if you loaded a gpx file which has elevation/time information. Keep that in mind if you overwrite a file.
Markers are saved as waypoints. Lines (polylines) are saved as tracks with one segment.
It is possible to set a name, description and comment for each marker and line in a popup.
These information are saved in the gpx file.
If you want more powerfull GPX editors, take a look at :
- [Viking](https://sourceforge.net/projects/viking/) which is the best IMHO
- [QLandKarteGT](https://bitbucket.org/kiozen/qlandkarte-gt)
- [QMapShack](https://bitbucket.org/maproom/qmapshack/wiki/Home)
- [JOSM](https://josm.openstreetmap.de/)
GpxEdit :
- works with server-side encryption.
- works with shared files.
- uses [Leaflet.Draw](https://github.com/Leaflet/Leaflet.draw) amazing plugin
- uses many other Leaflet plugins like Minimap, Sidebar2, MeasureControl, MousePositionControl
- uses JQuery
- uses [JQuery File Tree](https://github.com/jqueryfiletree/jqueryfiletree) amazing file tree library
Any feedback will be appreciated. Any feedback will be appreciated.
</description> </description>
<licence>AGPL</licence> <licence>AGPL</licence>
<summary>Display, analyse, compare and share gpx tracks</summary> <summary>Simple GPX file editor</summary>
<author>Julien Veyssier</author> <author>Julien Veyssier</author>
<author>Fritz Kleinschroth</author>
<version>0.0.1</version> <version>0.0.1</version>
<namespace>GpxEdit</namespace> <namespace>GpxEdit</namespace>
<documentation> <documentation>

View File

@ -1,37 +0,0 @@
.leaflet-label {
background: rgb(235, 235, 235);
background: rgba(235, 235, 235, 0.81);
background-clip: padding-box;
border-color: #777;
border-color: rgba(0,0,0,0.25);
border-radius: 4px;
border-style: solid;
border-width: 4px;
color: #111;
display: block;
font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
font-weight: bold;
padding: 1px 6px;
position: absolute;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
z-index: 6;
}
.leaflet-label.leaflet-clickable {
cursor: pointer;
}
.leaflet-label:before {
border-right: 6px solid black;
border-right-color: inherit;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
content: "";
position: absolute;
top: 5px;
left: -10px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,5 @@
<?php <?php
script('gpxedit', 'leaflet'); script('gpxedit', 'leaflet');
script('gpxedit', 'leaflet.label');
script('gpxedit', 'L.Control.MousePosition'); script('gpxedit', 'L.Control.MousePosition');
script('gpxedit', 'Control.Geocoder'); script('gpxedit', 'Control.Geocoder');
script('gpxedit', 'ActiveLayers'); script('gpxedit', 'ActiveLayers');
@ -22,7 +21,6 @@ script('gpxedit', 'gpxedit');
style('gpxedit', 'style'); style('gpxedit', 'style');
style('gpxedit', 'leaflet'); style('gpxedit', 'leaflet');
style('gpxedit', 'L.Control.MousePosition'); style('gpxedit', 'L.Control.MousePosition');
style('gpxedit', 'leaflet.label');
style('gpxedit', 'Control.Geocoder'); style('gpxedit', 'Control.Geocoder');
style('gpxedit', 'leaflet-sidebar'); style('gpxedit', 'leaflet-sidebar');
style('gpxedit', 'Control.MiniMap'); style('gpxedit', 'Control.MiniMap');