Change halo color for notes

This commit is contained in:
Aaron Lidman 2013-11-13 13:32:24 -08:00
parent 6ba9f8ba29
commit e336fc31c7
2 changed files with 15 additions and 2 deletions

View file

@ -3,7 +3,8 @@ OSM.NewNote = function(map) {
content = $('#sidebar_content'),
page = {},
addNoteButton = $(".control-note .control-button"),
newNote;
newNote,
halo;
var noteIcons = {
"new": L.icon({
@ -106,6 +107,15 @@ OSM.NewNote = function(map) {
newNote.addTo(noteLayer);
halo = L.circleMarker(map.containerPointToLatLng(markerPosition), {
weight: 2.5,
radius: 20,
fillOpacity: 0.5,
color: "#FF6200"
});
map.addLayer(halo);
newNote.on("remove", function () {
addNoteButton.removeClass("active");
}).on("dragstart",function () {
@ -130,6 +140,7 @@ OSM.NewNote = function(map) {
page.unload = function () {
noteLayer.removeLayer(newNote);
map.removeLayer(halo);
addNoteButton.removeClass("active");
};

View file

@ -78,7 +78,9 @@ OSM.Note = function (map) {
if (!map.hasLayer(halo)) {
halo = L.circleMarker(data.coordinates.split(','), {
weight: 2.5,
radius: 20
radius: 20,
fillOpacity: 0.5,
color: "#FF6200"
});
map.addLayer(halo);
}