Skip to content
Author
PUBLISHED: | UPDATED:
Getting your Trinity Audio player ready...

Two students were injured in a shooting Wednesday night at Frederick High School. The school, as well as neighboring West Frederick Middle School, is closed on Thursday. Immediately following the shooting, Hood College was locked down as a precaution.

Find the latest updates here.

https://maps.googleapis.com/maps/api/js?key=AIzaSyAz2YVxPNRos5XnuG42YFh5mm3IV99MzTg

#map-canvas {
width: 100%;
max-width:590px;
height: 200px;
background-color: #ccc;
margin-bottom: 16px;
}
.scrollFix {
line-height: 1.35;
overflow: hidden;
white-space: nowrap;
}
@media all and (min-width: 480px) {
#map-canvas {
height: 250px;
}
}
@media all and (min-width:768px) {
#map-canvas {
height: 345px;
}
}

var center;function calculateCenter(){center = map.getCenter();}var map;var loc1Latlng = new google.maps.LatLng(39.4173104,-77.42537700000003);var loc1marker = new google.maps.Marker({position:loc1Latlng,title:”Frederick High School”}); var loc1InfoWin = new google.maps.InfoWindow({content:”

Frederick High School

“,});var loc2Latlng = new google.maps.LatLng(39.4151154,-77.42748340000003);var loc2marker = new google.maps.Marker({position:loc2Latlng,title:”West Frederick Middle School”}); var loc2InfoWin = new google.maps.InfoWindow({content:”

West Frederick Middle School

“,});var loc3Latlng = new google.maps.LatLng(39.4213829,-77.4202024);var loc3marker = new google.maps.Marker({position:loc3Latlng,title:”Hood College”}); var loc3InfoWin = new google.maps.InfoWindow({content:”

Hood College

“,});function initialize() {var mapOptions = {}; map = new google.maps.Map(document.getElementById(“map-canvas”),mapOptions);google.maps.event.addDomListener(map, ‘idle’,function(){calculateCenter();});loc1marker.setMap(map);google.maps.event.addListener(loc1marker, “click”, function() { loc1InfoWin.open(map,loc1marker);});loc2marker.setMap(map);google.maps.event.addListener(loc2marker, “click”, function() { loc2InfoWin.open(map,loc2marker);});loc3marker.setMap(map);google.maps.event.addListener(loc3marker, “click”, function() { loc3InfoWin.open(map,loc3marker);});var bounds = new google.maps.LatLngBounds();bounds.extend(loc1Latlng);bounds.extend(loc2Latlng);bounds.extend(loc3Latlng);if (bounds.getNorthEast().equals(bounds.getSouthWest())) { var extendPoint1 = new google.maps.LatLng(bounds.getNorthEast().lat() + 0.01, bounds.getNorthEast().lng() + 0.01);var extendPoint2 = new google.maps.LatLng(bounds.getNorthEast().lat() – 0.01, bounds.getNorthEast().lng() – 0.01);bounds.extend(extendPoint1);bounds.extend(extendPoint2);}map.fitBounds(bounds);}google.maps.event.addDomListener(window, “load”, initialize);google.maps.event.addDomListener(window, ‘resize’, function(){map.setCenter(center);});