var map = new OpenLayers.Map("manhattan-NY-santander-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( , ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('2275 Broadway, Manhattan, NY 10024', '49c1d0f1', '43ab243c');$geo('864 8th Avenue, Manhattan, NY 10019', '9e2e61cd', '43ab243c');$geo('43 East 8th Street, Manhattan, NY 10003', '49c6debb', '43ab243c');$geo('225 East 86th Street, Manhattan, NY 10028', 'a6fc4bc3', '43ab243c');$geo('1350 Broadway, Manhattan, NY 10018', '684dbd77', '43ab243c');$geo('711 Third Avenue, Manhattan, NY 10017', 'd17a4c9d', '43ab243c');$geo('2702 Broadway, Manhattan, NY 10025', '0b48971a', '43ab243c');$geo('2 Gold Street, Manhattan, NY 10038', '271faa96', '43ab243c');$geo('108 Hudson Street, Manhattan, NY 10013', '6d71ecc8', '43ab243c');$geo('250 Lexington Avenue, Manhattan, NY 10016', '6a344816', '43ab243c');$geo('1062 3rd Avenue, Manhattan, NY 10065', '58ada3a0', '43ab243c');$geo('169 7th Avenue, Manhattan, NY 10011', '9c0cc99f', '43ab243c');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';});}