Skip to content

Instantly share code, notes, and snippets.

View B-PRAVEEN's full-sized avatar
💭
I may be slow to respond.

B Praveen B-PRAVEEN

💭
I may be slow to respond.
  • New Delhi
View GitHub Profile
@B-PRAVEEN
B-PRAVEEN / citystategeo.js
Created September 13, 2018 21:19 — forked from danasilver/citystategeo.js
Get only city and state from Google Maps API Reverse Geocoder
if (window.navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
var lat = position.coords.latitude,
lng = position.coords.longitude,
latlng = new google.maps.LatLng(lat, lng),
geocoder = new google.maps.Geocoder();
geocoder.geocode({'latLng': latlng}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
for (var i = 0; i < results.length; i++) {