update leaflet to 1.2.0 ; update CHANGELOG

merge-requests/3/head
Julien Veyssier 2017-08-14 03:13:32 +02:00
parent 93f7f6175e
commit ef3c252f79
4 changed files with 32 additions and 22 deletions

View File

@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] ## [Unreleased]
### Changed
- update leaflet to 1.2.0
### Fixed
- automatically add .gpx extension to save name
[#33](https://gitlab.com/eneiluj/gpxedit-oc/issues/33) @klakla2
## 0.0.7 2017-06-27 ## 0.0.7 2017-06-27
### Added ### Added

View File

@ -109,7 +109,6 @@ If you look for more powerfull GPX editors, take a look at :
<owncloud min-version="9.0" max-version="10.9" /> <owncloud min-version="9.0" max-version="10.9" />
<nextcloud min-version="9.0" max-version="12.9"/> <nextcloud min-version="9.0" max-version="12.9"/>
</dependencies> </dependencies>
<ocsid>174782</ocsid>
<settings> <settings>
<admin>OCA\GpxEdit\Settings\Admin</admin> <admin>OCA\GpxEdit\Settings\Admin</admin>
</settings> </settings>

View File

@ -5,8 +5,8 @@
.leaflet-marker-icon, .leaflet-marker-icon,
.leaflet-marker-shadow, .leaflet-marker-shadow,
.leaflet-tile-container, .leaflet-tile-container,
.leaflet-map-pane svg, .leaflet-pane > svg,
.leaflet-map-pane canvas, .leaflet-pane > canvas,
.leaflet-zoom-box, .leaflet-zoom-box,
.leaflet-image-layer, .leaflet-image-layer,
.leaflet-layer { .leaflet-layer {
@ -43,6 +43,7 @@
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg, .leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img, .leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer { .leaflet-container img.leaflet-image-layer {
max-width: none !important; max-width: none !important;
@ -55,10 +56,16 @@
.leaflet-container.leaflet-touch-drag { .leaflet-container.leaflet-touch-drag {
-ms-touch-action: pinch-zoom; -ms-touch-action: pinch-zoom;
} }
.leaflet-container.leaflet-touch-drag.leaflet-touch-drag { .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
-ms-touch-action: none; -ms-touch-action: none;
touch-action: none; touch-action: none;
} }
.leaflet-container {
-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile { .leaflet-tile {
filter: inherit; filter: inherit;
visibility: hidden; visibility: hidden;
@ -302,7 +309,14 @@
height: 30px; height: 30px;
line-height: 30px; line-height: 30px;
} }
.leaflet-touch .leaflet-bar a:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
/* zoom control */ /* zoom control */
@ -311,16 +325,10 @@
font: bold 18px 'Lucida Console', Monaco, monospace; font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px; text-indent: 1px;
} }
.leaflet-control-zoom-out {
font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in { .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
font-size: 22px; font-size: 22px;
} }
.leaflet-touch .leaflet-control-zoom-out {
font-size: 24px;
}
/* layers control */ /* layers control */
@ -358,6 +366,7 @@
} }
.leaflet-control-layers-scrollbar { .leaflet-control-layers-scrollbar {
overflow-y: scroll; overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px; padding-right: 5px;
} }
.leaflet-control-layers-selector { .leaflet-control-layers-selector {
@ -376,7 +385,7 @@
/* Default icon URLs */ /* Default icon URLs */
.leaflet-default-icon-path { .leaflet-default-icon-path {
background-image: url(images/); background-image: url(images/marker-icon.png);
} }

File diff suppressed because one or more lines are too long