This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| google.maps.event.addDomListener(window, 'load', initializeMap); | |
| function initializeMap() { | |
| initializeDatePicker(); | |
| var mapOptions = { | |
| mapTypeId: google.maps.MapTypeId.ROADMAP, | |
| mapTypeControl: false | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var mapComponents = (function(){ | |
| var markers = []; | |
| var circles = []; | |
| var crimes = []; | |
| return { | |
| markers: markers, | |
| circles: circles, | |
| crimes: crimes, |
OlderNewer