var map = new OpenLayers.Map("charlotte-NC-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( -80.8263, 35.193 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('712 Tyvola Rd, Charlotte, NC 28217', '46bd750f', '77ce6aa1');$geo('8300 Medical Plaza Dr, Charlotte, NC 28262', '85272c82', '77ce6aa1');$geo('9808 Rea Rd, Charlotte, NC 28277', '7fe66ee3', '77ce6aa1');$geo('12802 S Tryon St, Charlotte, NC 28273', '3092e9d2', '77ce6aa1');$geo('7939 Providence Rd, Charlotte, NC 28277', '2d260d8d', '77ce6aa1');$geo('2910 South Blvd, Charlotte, NC 28209', '4ff99ed8', '77ce6aa1');$geo('801 Kenilworth Ave, Charlotte, NC 28204', '4dc96b43', '77ce6aa1');$geo('1616 Central Ave, Charlotte, NC 28205', '7c47df85', '77ce6aa1');$geo('6101 Fairview Rd, Charlotte, NC 28210', '7abfa363', '77ce6aa1');$geo('9005 Albemarle Rd, Charlotte, NC 28227', '21e5d12f', '77ce6aa1');$geo('5648 Central Ave, Charlotte, NC 28212', 'f7fa271d', '77ce6aa1');$geo('4501 Park Rd, Charlotte, NC 28209', '674e72ea', '77ce6aa1');$geo('200 S Sharon Amity Rd, Charlotte, NC 28211', '00ccb767', '77ce6aa1');$geo('2803 Freedom Dr, Charlotte, NC 28208', 'bfd0bdbe', '77ce6aa1');$geo('839 Providence Rd, Charlotte, NC 28207', '3d1a7e0b', '77ce6aa1');$geo('5637 Albemarle Rd, Charlotte, NC 28212', '1f4a0afa', '77ce6aa1');$geo('10210 Couloak Dr, Charlotte, NC 28216', 'aef4fc9f', '77ce6aa1');$geo('1500 Westinghouse Blvd, Charlotte, NC 28273', 'c8bf54bc', '77ce6aa1');$geo('2610 W Sugar Creek Rd, Charlotte, NC 28262', '4eff61a6', '77ce6aa1');$geo('10630 Providence Rd, Charlotte, NC 28277', 'f26faa56', '77ce6aa1');$geo('4525 Sharon Rd, Charlotte, NC 28211', '410248bc', '77ce6aa1');$geo('1527 W Morehead St, Charlotte, NC 28208', '4aa6af28', '77ce6aa1');$geo('2821 Pineville Matthews Rd, Charlotte, NC 28270', 'fa016778', '77ce6aa1');$geo('8700 J M Keynes Dr, Charlotte, NC 28262', 'dd5e9480', '77ce6aa1');$geo('1065 Providence Rd, Charlotte, NC 28207', '0045d0f4', '77ce6aa1');$geo('4111 N Tryon St, Charlotte, NC 28206', '4f5d7398', '77ce6aa1');$geo('15625 John J Delaney Dr, Charlotte, NC 28277', '87968972', '77ce6aa1');$geo('5641 Hovis Rd, Charlotte, NC 28216', '02ec2c79', '77ce6aa1');$geo('1607 Sardis Rd N, Charlotte, NC 28270', 'c66ffe0e', '77ce6aa1');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';});}