diff options
Diffstat (limited to 'csci4131/hw3/contacts.js')
-rw-r--r-- | csci4131/hw3/contacts.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/csci4131/hw3/contacts.js b/csci4131/hw3/contacts.js index e5fffc2..7a01bd3 100644 --- a/csci4131/hw3/contacts.js +++ b/csci4131/hw3/contacts.js @@ -99,7 +99,6 @@ function searchPlaces() { query: document.getElementById("others").value, }; otherRadius = request.radius; - console.log(otherRadius); service = new google.maps.places.PlacesService(map); service.textSearch(request, (results, status) => { if (status === google.maps.places.PlacesServiceStatus.OK && results) { @@ -109,7 +108,6 @@ function searchPlaces() { } } function addPointsSearch(locations, isOther) { - console.log(locations); for (x in locations) { var marker; if (isOther) { |