var map = new OpenLayers.Map("anchorage-AK-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( -149.867, 61.2187 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('320 W 5th Ave, Anchorage, AK 99501', '6d5303c7', '38e7b3f6');$geo('600 E Northern Lights Blvd, Anchorage, AK 99503', '467d6240', '38e7b3f6');$geo('3101 A St, Anchorage, AK 99503', '841760f7', '38e7b3f6');$geo('1500 W Benson Blvd, Anchorage, AK 99503', '1b3a0dd3', '38e7b3f6');$geo('745 E Dimond Blvd, Anchorage, AK 99515', 'bfa2d653', '38e7b3f6');$geo('630 E 5th Ave, Anchorage, AK 99501', 'c0fc4923', '38e7b3f6');$geo('7731 E Northern Lights Blvd, ANCHORAGE, AK 99504', '0306c176', '38e7b3f6');$geo('1351 Huffman Rd, Anchorage, AK 99515', '4aa73ae0', '38e7b3f6');$geo('301 W Northern Lights Blvd, Anchorage, AK 99503', '8eaba03c', '38e7b3f6');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';});}