var map = new OpenLayers.Map("mobile-AL-wells-fargo-bank");map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap", ['//a.tile.openstreetmap.org/${z}/${x}/${y}.png','//b.tile.openstreetmap.org/${z}/${x}/${y}.png','//c.tile.openstreetmap.org/${z}/${x}/${y}.png'], null)); var zoom=9;var lonLat = new OpenLayers.LonLat( -88.0499, 30.6975 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2745 Government Blvd, Mobile, AL 36606', '881a7948', '1899af82');$geo('401 Azalea Rd, Mobile, AL 36609', '0241c18c', '1899af82');$geo('1763 Spring Hill Ave, Mobile, AL 36607', '1eab7cf1', '1899af82');$geo('61 St Joseph St, Mobile, AL 36602', 'be51b303', '1899af82');$geo('55 N Water St, Mobile, AL 36602', '4df9026e', '1899af82');$geo('4725 Moffat Rd, Mobile, AL 36618', '0202465b', '1899af82');$geo('7105 Airport Blvd, Mobile, AL 36608', '06a3c033', '1899af82');$geo('4650 Airport Blvd, Mobile, AL 36608', '67fc7229', '1899af82');$geo('550 Bel Air Blvd, Mobile, AL 36606', 'a87b0530', '1899af82');$geo('3001 Dauphin St, Mobile, AL 36606', 'e7de86c3', '1899af82');function $setCenter($lon, $lat){map.setCenter(new OpenLayers.LonLat($lon,$lat).transform(new OpenLayers.Projection('EPSG:4326'), map.getProjectionObject() ), 18);}function $geo($location, $hash, $hash2){var $geocode = 'https://nominatim.openstreetmap.org/search?q='+$location+'&format=json'; $.getJSON($geocode, function(data) {var lonLat = new OpenLayers.LonLat( data[0]['lon'] , data[0]['lat'] ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());var markers = new OpenLayers.Layer.Markers( "Markers" );map.addLayer(markers);markers.addMarker(new OpenLayers.Marker(lonLat));map.setCenter (lonLat, 12);document.getElementById($hash).innerHTML += ' | View Map';});}