Skip to content

where are we | World Relief Baltimore

Our Location

.mapboxgl-popup {
max-width: 550px;
font: 12px/20px ‘Helvetica Neue’, Arial, Helvetica, sans-serif;
}
h5{ font-size:13px; line-height: 12px; margin-bottom: 0;}

mapboxgl.accessToken = ‘pk.eyJ1Ijoid29ybGRyZWxpZWYiLCJhIjoiY2l3bW1xaWZwMDA4YzJ6cDdzaHZrMzhiNiJ9.ut4X4QmjiqLT2g2bw54wlg’;

var map = new mapboxgl.Map({
container: ‘map’,
style: ‘mapbox://styles/worldrelief/ciwwx1vgc00cz2qnyrdxsex56’,
center: [-98.04, 37.8],
zoom: 3.3
});

var mq = window.matchMedia( “(min-width: 420px)” );

if (mq.matches){
var map = new mapboxgl.Map({
container: ‘map’,
style: ‘mapbox://styles/worldrelief/ciwwx1vgc00cz2qnyrdxsex56’,
center: [-76.61465, 39.28926],
zoom: 12.9
});

} else {
var map = new mapboxgl.Map({
container: ‘map’,
style: ‘mapbox://styles/worldrelief/ciwwx1vgc00cz2qnyrdxsex56’,
center: [-76.61465, 39.28926],
zoom: 2.4
});
};

map.on(‘load’, function () {
// Add a GeoJSON source containing place coordinates and information.
map.addSource(“places”, {
“type”: “geojson”,
“data”: {
“type”: “FeatureCollection”,
“features”: [{
“type”: “Feature”,
“properties”: {
“description”: ”

World Relief Baltimore

7 E. Baltimore Street Baltimore, MD 21202
Directions

“,
“icon”: “circle”
},
“geometry”: {
“type”: “Point”,
“coordinates”: [-76.61465, 39.28926]
}
} ]
}
});

// Add a layer showing the places.
map.addLayer({
“id”: “places”,
“type”: “symbol”,
“source”: “places”,
“layout”: {
“icon-image”: “marker-15”,
“icon-size” : 1.55,
“icon-allow-overlap”: true
},
“paint”: {
“icon-opacity”: 0.75
}
});
});

map.addControl(new mapboxgl.NavigationControl());

// When a click event occurs near a place, open a popup at the location of
// the feature, with description HTML from its properties.
map.on(‘click’, function (e) {
var features = map.queryRenderedFeatures(e.point, { layers: [‘places’] });

if (!features.length) {
return;
}

var feature = features[0];

// Populate the popup and set its coordinates
// based on the feature found.
var popup = new mapboxgl.Popup()
.setLngLat(feature.geometry.coordinates)
.setHTML(feature.properties.description)
.addTo(map);
});

// Use the same approach as above to indicate that the symbols are clickable
// by changing the cursor style to ‘pointer’.
map.on(‘mousemove’, function (e) {
var features = map.queryRenderedFeatures(e.point, { layers: [‘places’] });
map.getCanvas().style.cursor = (features.length) ? ‘pointer’ : ”;
});

World Relief Baltimore Immigrant Services Officeis located in downtown Baltimore accessible by commuter trains, Light Rail, and bus routes. It is located near the corner of Baltimore Street and Charles Street.

World Relief Baltimore
Immigrant Services Office
7 E. Baltimore Street Baltimore, MD 21202
Phone: 410.244.0002
Fax: 410.244.0122

Site Designed and Developed by 5by5 - A Change Agency