Skip to content

Commit

Permalink
Removed comments, and logs
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanBirtch-aot committed Aug 1, 2024
1 parent 6decb87 commit 174dfb1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions components/src/components/Map/services/MapService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@ class MapService {
.setContent('<p>Only one marker for submission</p>')
.openOn(map);
} else {
console.log(layer);
if (layer.type === 'marker') {
layer.setIcon(this.customMarker);
console.log('Adding marker' + layer);
}
drawnItems.addLayer(layer);
}
Expand Down Expand Up @@ -162,7 +160,6 @@ class MapService {
let layer;
if (item.type === 'marker') {
layer = L.marker(item.coordinates).setIcon(this.customMarker); //layer.setIcon(this.customMarker);
console.log('Loading Marker' + layer);
} else if (item.type === 'rectangle') {
layer = L.rectangle(item.bounds);
} else if (item.type === 'circle') {
Expand Down

0 comments on commit 174dfb1

Please sign in to comment.