var map = new OpenLayers.Map("naples-FL-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( -81.7971, 26.1387 ).transform(new OpenLayers.Projection("EPSG:4326"),map.getProjectionObject());map.setCenter (lonLat, zoom);$geo('5610 Strand Blvd, Naples, FL 34110', '5fccce7f', '54f5ec8f');$geo('8615 Collier Blvd, Naples, FL 34114', '7253d64c', '54f5ec8f');$geo('125 Airport Pulling Rd N, Naples, FL 34104', '233deb3c', '54f5ec8f');$geo('820 Park Shore Dr, Naples, FL 34103', '84a0835b', '54f5ec8f');$geo('12604 Tamiami Trl E, Naples, FL 34113', '35d70098', '54f5ec8f');$geo('2470 Vanderbilt Beach Rd, Naples, FL 34109', '8710d1ca', '54f5ec8f');$geo('900 5th Ave S, Naples, FL 34102', 'b6133d2c', '54f5ec8f');$geo('15219 Collier Blvd, Naples, FL 34119', '96af4706', '54f5ec8f');$geo('5801 Pelican Bay Blvd, Naples, FL 34108', '830d5e51', '54f5ec8f');$geo('11075 Tamiami Trl N, Naples, FL 34108', 'd7d6954d', '54f5ec8f');$geo('5094 Airport Pulling Rd N, Naples, FL 34105', '72fa0afa', '54f5ec8f');$geo('4795 Golden Gate Pkwy, Naples, FL 34116', '182fcc6f', '54f5ec8f');$geo('4901 Tamiami Trl E, Naples, FL 34113', '91a957a2', '54f5ec8f');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';});}