change line style on hover and draw control text

merge-requests/1/head
Julien Veyssier 2016-12-08 12:26:37 +01:00
parent 82ae3a24cc
commit 099fd75385
2 changed files with 23 additions and 1 deletions

View File

@ -20,12 +20,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#6](https://gitlab.com/eneiluj/gpxedit-oc/issues/6) @eneiluj
- symbol selects include icons
[#6](https://gitlab.com/eneiluj/gpxedit-oc/issues/6) @eneiluj
- gpx route parsing
- gpx route parsing, save it as route
### Changed
- detach marker and tooltip styling option
- every symbol can be default marker style choices
[#6](https://gitlab.com/eneiluj/gpxedit-oc/issues/6) @eneiluj
- line style, control text
### Fixed
- remove $.parseXML, apparently useless and producing errors

View File

@ -135,6 +135,17 @@ var symbolIcons = {
}),
}
var hoverStyle = {
weight: 12,
opacity: 0.7,
color: 'black'
};
var defaultStyle = {
opacity: 0.9,
color: '#f357a1',
weight: 7
};
function load_map() {
var layer = getUrlParameter('layer');
console.log('layer '+layer);
@ -333,6 +344,8 @@ function load_map() {
}
};
L.drawLocal.draw.toolbar.buttons.polyline = 'Draw a track';
L.drawLocal.draw.toolbar.buttons.marker = 'Add a waypoint';
var drawControl = new L.Control.Draw(options);
gpxedit.drawControl = drawControl;
gpxedit.map.addControl(drawControl);
@ -411,6 +424,14 @@ function onCreated(type, layer){
popupTxt = popupTxt + '<button class="popupOkButton" layerid="'+gpxedit.id+'">OK</button>';
layer.bindPopup(popupTxt);
if (type !== 'marker') {
layer.on('mouseover', function(){
layer.setStyle(hoverStyle);
});
layer.on('mouseout', function(){
layer.setStyle(defaultStyle);
});
}
layer.gpxedit_id = gpxedit.id;
layer.type = layerType;